Text Box as Parameter?

A

Ashley

Is there a way that a user can enter information on a form and those text
boxes be used as the parameters for a query? If so, how would I go about
doing that?

thanks
 
R

RonaldoOneNil

In the criteria row of fields in your query you can reference information
from forms using syntax like this

[Forms]![FormName]![TextBoxName]
 
Top