Criteria within queries

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Anybody know how to create criteria that will allow a dropdown list of
options to limit the query?
 
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]
 
Back
Top