Day in Date Format

  • Thread starter Thread starter Nick
  • Start date Start date
N

Nick

Can anyone tell me how to have the day of the week in
front of the Long Date?
Control source =Format$([Earl#start date],"Long Date",0,0)

Regards
Nick
 
Open the Windows control panel. Go to Regional Settings.
Set "Long Date" to:
dddd mm/dd/yyyy

Alternatively, set the Control Source of your text box to:
[Earl#start date]
and its Format property to:
dddd mm/dd/yyyy

Another alternative is to add an extra text box in front of the existing
one, and give it these properties:
Control Source [Earl#start date]
Format dddd
Enabled No
Locked Yes
The use cannot edit this box, but it always shows the day, and does not
complicate the editing of the date.
 
Back
Top