S scottappleford Registered User. Local time Today, 01:28 Joined Dec 10, 2002 Messages 134 Mar 13, 2003 #1 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
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
C charityg Registered User. Local time Today, 01:28 Joined Apr 17, 2001 Messages 634 Mar 13, 2003 #2 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.
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.