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 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")
 
Back
Top