DatePart Diaplay Month

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

Guest

I have been able to develop a report that displays summary information
attached to each month. I have used DatePart Expr1:
DatePart("m",[dtmAmbulanceAuditDate])to pull out the month from the date but
it only displays the month as a numeral eg "3" for March. It would make the
report more professional if I could display the name of the month instead as
"March". Is there a way to force access to do this on my report.
 
I have been able to develop a report that displays summary information
attached to each month. I have used DatePart Expr1:
DatePart("m",[dtmAmbulanceAuditDate])to pull out the month from the date but
it only displays the month as a numeral eg "3" for March. It would make the
report more professional if I could display the name of the month instead as
"March". Is there a way to force access to do this on my report.

Why not simply format the date to show just the month name?

Exp1:Format(dtmAmbulanceAuditDate,"mmmm")

or not bother to do it in the query, but directly in the report.
Display the [dtmAmbulanceAuditDate] field in the report and set it's
format property to
mmmm
 

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

Back
Top