Including date in report header

Toolpusher

Registered User.
Local time
Today, 17:10
Joined
May 29, 2007
Messages
53
Hi

I created a report in access 2003 that gives me last months stats. The header reads "Summary of Observations submitted" I want it to read "Summary of Observations submitted Feb 2011" I have inserted a text box after submitted but end up with the date format as 17/03/2011 anyone help please:confused:
 
You can use the format() function to change the format.

Example:
Code:
Format([myDate], "MMM yyyy")
 
Thankyou got in now
 

Users who are viewing this thread

Back
Top Bottom