Weekday function in Access

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

Guest

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

Thanx,

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