Weekdays

  • Thread starter Thread starter CharlesCount via AccessMonster.com
  • Start date Start date
C

CharlesCount via AccessMonster.com

I would like to add a field in a query just to dispaly the day of the week
for a particular recor

Thanks
 
If the field is named Date1, type this expression into a fresh column in the
Field row:
Format([Date1], "dddd")

Use "ddd" if you just want the first 3 letters of the name.
 
Back
Top