Date Format

  • Thread starter Thread starter Jason Frazer
  • Start date Start date
J

Jason Frazer

I have a field [date1] from table [bridge] with a value of "0503", which is
text. How can i display this in my report to be "May 2003"?

Thanks for your help

Jason
 
Jason said:
I have a field [date1] from table [bridge] with a value of "0503", which is
text. How can i display this in my report to be "May 2003"?

=Format(DateSerial(Right(date1, 2), Left(date1, 2), 1),
"mmmm yyyy")
 
Jason,
Format(DateSerial(Right([Date1],2),Left([Date1],2),1),"mmm yyyy")
 

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