Query expression...

  • Thread starter Thread starter 116
  • Start date Start date
1

116

I am currently using 'Weekday: DatePart("w",[Wdate])'. Can the actual day
Mon, Tues, etc. be displayed?
 
hi,

I am currently using 'Weekday: DatePart("w",[Wdate])'. Can the actual day
Mon, Tues, etc. be displayed?
Use Format():

Format(Now(), "ddd") or Format(Now(), "dddd")


mfG
--> stefan <--
 
â€â€ÙƒØªØ¨ "Stefan Hoffmann said:
hi,

I am currently using 'Weekday: DatePart("w",[Wdate])'. Can the actual
day
Mon, Tues, etc. be displayed?
Use Format():

Format(Now(), "ddd") or Format(Now(), "dddd")


mfG
--> stefan <--
 
Back
Top