Weekday function in Access

P

pmp350

How do I get the weekday function to return a weekday "label" instead of the
number?

Thanx,

Paul
 
A

Allen Browne

Use the Format() function instead of Weekday(), e.g.:
Format([MyDateField], "dddd")
 
Top