Parameter query based on a combo box

ppataki

Registered User.
Local time
Today, 11:07
Joined
Sep 5, 2008
Messages
267
Dear All,

I have a combo box in a form, would it be possible (and if yes how) that after selecting an item from the list, that item will be used as a parameter in a query?

Many thanks in advance ;)
 
the parameter syntax in the WHERE clause of the query is:
Code:
WHERE [Yourvalue] = forms!YourFormName!ComboBoxName
 
Thank you!! It works perfectly ;)
 

Users who are viewing this thread

Back
Top Bottom