Are you using a form for the user to input the dates? If so, leave the form open, and pass the values to the report like this in an unbound text box with the control source of:
="Between " & [Forms]![frmName]![StartDate] & " - " & [Forms]![frmName]![EndDate]
When the report closes, close the form which was used for the dates.
Regards,
Beth M
|