Form input for Query Criteria

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
 
R

Reggie

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]
 
Top