label caption

eacollie

Registered User.
Local time
Yesterday, 18:13
Joined
May 14, 2011
Messages
159
Can I display the weekday in a label on a report? If so, how?

The record source for the report has a variable "StartDate" and I want to show the day of the week (Monday, Tuesday, etc) of this date in a label.

Thanks much
 
Fake the label with a textbox. Then you can use a ControlSource formula to show the day.

Set the border to transparent, lock and disable and the textbox will look and behave like a label.
 
StartDate is a field in the record source of the report.

I created a textbox and set the control source to =Weekday([StartDate],[vbSunday]) but it displays empty. What am I doing wrong?
 

Users who are viewing this thread

Back
Top Bottom