Formatting NULL values in Drop-Down control

  • Thread starter Thread starter jtertin
  • Start date Start date
J

jtertin

I have a drop-down control that is being populated by an entire table
(not a query). There are NULL values in the table which appear as
blank spaces in the drop down. How can I format the drop down to put
some static text in place of the empty space. (For example
'Available', or 'Not Defined').
 
In the combobox's Row Source, use a query to return the list and instead of
the original field, use something like:

Nz([OriginalField],"Available")
 

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

Back
Top