Help

jaybarnard

New member
Local time
Today, 21:43
Joined
Aug 1, 2006
Messages
3
I am not an expert user of Access and need some help, i have created areport but i want to be able to enter a criteria of a start date and end date for the report contents. I have been driving my self mad trying all sort of ways to do this can anybody point me in the right direction.:confused:
 
In the query running the report, in the date field criteria put this

Code:
 Between [Enter start date] and [Enter end date]

Col
 
Thanks for that
 
ColinEssex said:
In the query running the report, in the date field criteria put this

Code:
 Between [Enter start date] and [Enter end date]

Col
If you put a couple of text boxes in your report header you can show dates retrieved. I use
=Min([START_DATE])
in the control source and Max for the other.

Possibly there's a better way but it works OK.
 

Users who are viewing this thread

Back
Top Bottom