Criteria within queries

J

Jan

Anybody know how to create criteria that will allow a dropdown list of
options to limit the query?
 
O

Ofer Cohen

Create a form with a drop down (combo box) and then run the query that will
have a reference to this combo

Select * From TableName
Where FieldName = Forms![FormName]![ComboName]
 
Top