Using Access 2003 convert numeric month to text for reports

M

M G Henry

Hello everyone,

Looking for a way to create a report using data that has dates
formated as 01/01/2003 ( basically mm/dd/yyyy ) but want to display
on the report sorted under categories ( using a query to sort the
categories ) but printed out as long version of the month. January
2005 etc.

Thanks for the help.
 
A

Albert D. Kallal

You can place a text box on the report based on the date column (call the
text box txtMonth or some such).

the text box can be formatted as:

=(Format([DateCollum],"MMMM, YYYY"))

the above would show

January, 2005

for today's date....
 
M

M G Henry

You can place a text box on the report based on the date column (call the
text box txtMonth or some such).

the text box can be formatted as:

=(Format([DateCollum],"MMMM, YYYY"))

the above would show

January, 2005

for today's date....

Perfect, Thanks.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top