Creating blank line in look-up table

W

Wendy Simes

I want the first space in my drop-down list to be a blank space, how
do I achieve this. The Drop-down list is in a seperate table.
 
T

tina

if the table has a primary key field that is not seen by the user, plus one
or more fields that show up in the form's combo box droplist, then just add
a record to the table with a primary key value and no data in the other
field(s).

alternately, you could probably use a Union query, for example

SELECT Table1.ID, Table1.someName
FROM Table1
UNION SELECT Null, ""
FROM Table1
ORDER BY Table1.someName;

hth
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top