Combo box default value not in requery list

  • Thread starter Thread starter JustinP
  • Start date Start date
J

JustinP

I have a default value "Any" for a combo box that is not in the control
source (a query). When a value other than "Any" is selected from the
combo box I no longer have the option to select "Any" again. How can I
retain "Any" as an option in the combo box and still have the control
source as a query?
 
How can I make the "Any" option appear as the first record in the combo
box? (there are some records that are alphabetically before it)
 
How about adding brackets around the Any, i.e. :
UNION ALL SELECT "(Any)" AS ...

Then include an ORDER BY clause at the end of the query to sort by this
field.
 

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