Returns a string indicating the specified day of the week.
WeekdayName(weekday, abbreviate, firstdayofweek)
The firstdayofweek argument can have the following values:
Constant | Value | Description |
---|---|---|
vbUseSystemDayOfWeek | 0 | Use National Language Support (NLS) API setting. |
vbSunday | 1 | Sunday (default) |
vbMonday | 2 | Monday |
vbTuesday | 3 | Tuesday |
vbWednesday | 4 | Wednesday |
vbThursday | 5 | Thursday |
vbFriday | 6 | Friday |
vbSaturday | 7 | Saturday |
The following example uses the WeekDayName function to return the specified day:
Dim MyDate MyDate =WeekDayName(
6, True)
' MyDate contains Fri.