How to show date (11/08/2009) as month (August)

Johnrg

Registered User.
Local time
Tomorrow, 10:05
Joined
Sep 25, 2008
Messages
115
Guys,
I have a report that looks up a general date feild in a table.
At the moment the report reads, as an example "11/08/2009"
I want it to read "August"
or if it was 11/09/2009 the report would show "September"
Is this possible?
If so how?
Thanks
JohnG
 
Guys,
I have a report that looks up a general date feild in a table.
At the moment the report reads, as an example "11/08/2009"
I want it to read "August"
or if it was 11/09/2009 the report would show "September"
Is this possible?
If so how?
Thanks
JohnG

Set the control source of your text box to

=Format([YourDateFieldInBrackets], "mmmm")
 
Thanks Bob.
JohnG
 
Hi Bob,
Just checked the report and it worked fine.
Just one thing - I see it returns formatted as "August", if there anyway to make it return in capitals formatted as "AUGUST"
Thanks
JohnG
 
In the Format for that control put a Greater Than symbol ">", this will force it to fully capitalise,
 
Hi Bob,
Just checked the report and it worked fine.
Just one thing - I see it returns formatted as "August", if there anyway to make it return in capitals formatted as "AUGUST"
Thanks
JohnG
Since you are using the format function, go ahead and do:

=UCase(Format([YourDateFieldInBrackets], "mmmm"))
 
GladWeCouldHelp.png
 

Users who are viewing this thread

Back
Top Bottom