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
 
If you have a date field, you can set the Format property of the text box
to:
dddd
 
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")
 

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

Similar Threads


Back
Top