make form from a query

scottappleford

Registered User.
Local time
Today, 00:06
Joined
Dec 10, 2002
Messages
134
how do i make a form from a query using parameters. when the form opens i would like it to ask criteria to find the record.

thanks
 
Create your parameter query, for example

Select * from tblYourTable where YourDate Between [enter start date] and [enter end date]

Save the query, then set the recordsource property for the form to the parameter query you just made.
 

Users who are viewing this thread

Back
Top Bottom