G Guest Apr 21, 2006 #1 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
A Allen Browne Apr 21, 2006 #2 If you have a date field, you can set the Format property of the text box to: dddd
F fredg Apr 21, 2006 #3 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 Click to expand... 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")
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 Click to expand... 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")