Form input for Query Criteria

  • Thread starter Thread starter John
  • Start date Start date
J

John

I would like to create a form that the data entered into its textboxes would
become the criteria for a query. What would be the steps?

Thanks
 
John, In your query under the desired field place something like this as the
criteria for that field. Replace the form and control names with your form
and control names:

=[Forms]![MyFormName]![MyControlName]
 
Back
Top