getting query info from a form field

M

maarkr

I'm trying to run a query based on a field on a form.

Actually its a print date range where the user enters two
dates in text boxes, and when the user clicks the print
button, the parameter query (between [] and []) reads the
dates from the form.

thanks
 
R

Rick B

It would look something like...

Between [Forms]![YourFormNameHere]![EnterStartDate] And
[Forms]![YourFormNameHere]![EnterStartDate]



Rick B



I'm trying to run a query based on a field on a form.

Actually its a print date range where the user enters two
dates in text boxes, and when the user clicks the print
button, the parameter query (between [] and []) reads the
dates from the form.

thanks
 
Top