current day

M

martin

Is there a way to display the current day of the week on a
form? I would like it to read Thu if it is Thursday, Wed
if it is Wednesday, etc. any advice is appreciated.
thanks, martin.
 
D

Dirk Goldgar

martin said:
Is there a way to display the current day of the week on a
form? I would like it to read Thu if it is Thursday, Wed
if it is Wednesday, etc. any advice is appreciated.
thanks, martin.

Add a text box with this ControlSource:

=Format(Date(),"ddd")
 
Top