combo box ans query

  • Thread starter Thread starter EdWeitz
  • Start date Start date
E

EdWeitz

I want to use a combo box to provide the user with a list
of choices. Once a choice has been selected, I want that
value to automatically be used in a select query.
 
Hi,
You'll have to create a form for this.
Use a combo box and populate it with your choices.
In your query, use a reference to the combo as your criteria:

=Forms!yourForm!yourCombo
 
Back
Top