Displaying DOW in Accss Form

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a simple way of displaying a date field as the Day of the Week ie:
Monday, Friday, etc... in an Access Form?

Thanks
 
Is there a simple way of displaying a date field as the Day of the Week ie:
Monday, Friday, etc... in an Access Form?

Thanks

To display a date as the day of the week (Monday):
=Format([DateField],"dddd")

To display a date as the day of the week abbreviated as Mon:
=Format([DateField],"ddd")
 
Back
Top