multi combo boxes, which one runs

teiben

Registered User.
Local time
Today, 19:44
Joined
Jun 20, 2002
Messages
462
I have 6 combo boxes on a form, which call a report based on a query. The idea is that the user can query data 6 different way. How do I/ or the user know which one is actually running first. Would the order left to right make a difference? (None have sort ascending or descending)
 
Left to right won't make a difference, it's all in the names and how you call the boxes. Do you have your query running the boxes in a specific order, or are these variables you collect in VBA and trasfer to a SQL statement?

If they are running in an access assisted query (i.e.: not VBA) then the sort order is dependent on the order in which you display your fields in the query. If you are in VBA, then you should be able to use code to allow the user to specify which fields they want to sort on first.
 

Users who are viewing this thread

Back
Top Bottom