weekly reports

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to be able to get a weekly report and i need to know where I should
put this in access the date range is >=and date<= to give me a report between
cetain dates.Any sggestion gratefully received
 
See:
Limiting a Report to a Date Range
at:
http://allenbrowne.com/casu-08.html

You said "weekly report", so it would be possible to do this with one
parameter insted of two. For example, in Method 1 of that article, you would
replace:
Between [StartDate] And [EndDate]
with:
Between [StartDate] And [StartDate] + 6
 
Back
Top