Formating a date

  • Thread starter Thread starter Jerry
  • Start date Start date
J

Jerry

In an Access query, I would like to create a string that concatenates a
string
and a date. Each quarter this would run and create a string such as:

"NCOA - January 2005"

Is there a function similar to DatePart that would accomplish this?

Thanks,

Jerry
 
I believe it would be something like:

SomeNewField: "NCOA - "& format([SomeDate],"MMMM-YYYY")

You can look at the "format" command for more help.

Rick B
 

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