Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Automatic Monthly Reporting 1

Status
Not open for further replies.
Jun 18, 2002
126
US
Every month I have to update my queries to report only for the current month by changing my parameter dates to equal that of the current month. Then I change my report headers to display Jan, Feb, March, ets. Is there a way to do this automatically do this each month?
 
If you run the report in the current month then do this
Put this expression in a new column in your query.
MyMonth:Month([YourDateField])

and on the Criteria line put
=Month(Date())

Then just use Format(Date(),"mmmm")in your Header.

Paul
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top