make a date a weekday (like 7/18/05 = Monday)

  • Thread starter Thread starter Mark Carlyle via AccessMonster.com
  • Start date Start date
M

Mark Carlyle via AccessMonster.com

How can I convert a number date to a word day?

I want to give 7/18/2005 and get back Monday
 
Mark

You can use the format function.

Format(#7/18/2005#,"dddd")

Ron W
 
Mark said:
How can I convert a number date to a word day?

I want to give 7/18/2005 and get back Monday

Format([FieldName], "dddd")
or
Format(#7/18/2005#, "dddd")
 

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