date expression

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.
 
K

Ken Snell

Check out the DateAdd function and the Format function.

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