date expression

  • Thread starter Thread starter Herb
  • Start date Start date
H

Herb

What expression do you use in the text box control source
to produce system dates weekly in a form? In other words
when you access the form it shows the current system
weekdays from the text box.
 
Check out the DateAdd function and the Format function.

WeekdayName = Format(DateAdd("d", 1, Date()), "dddd")
 
Back
Top