criteria

C

Christina

I have a repost and a sub report that run from queries that prompt for dates
between beginning date and ending date.
I would like to create a form to input the criteria and run the report.
 
K

karl dewey

Use unbound form with unbound text boxes.
In the query, replacing the prompts use this --
CVDate([Forms]![YourFormName]![TextBoxName1])
and second CVDate([Forms]![YourFormName]![TextBoxName2])
 
Top