Returns a string indicating the specified day of the week. .
WeekDayName(weekday, abbreviate, firstdayofweek)
The WeekDayName function syntax has these parts:
Part Descriptionweekday Required. THe numeric designation for the day of the week. Numeric value of each day depends on setting of the firstdayofweek setting.abbreviate Optional. Boolean value that indicates if the weekday name is to be abbreviated. If omitted, the default is False, which means that the weekday name is not abbreviated.firstdayofweek Optional. Numeric value indicating the first day of the week. See Settings section for values.
The firstdayofweek argument can have the following values:
Constant Value DescriptionvbUseSystem 0 Use National Language Support (NLS) API setting.vbSunday 1 Sunday (default)vbMonday 2 MondayvbTuesday 3 TuesdayvbWednesday 4 WednesdayvbThursday 5 ThursdayvbFriday 6 FridayvbSaturday 7 Saturday
.