WeekdayName Function
SyntaxGroupWeekdayName(NumZ{day}[, CondZ{abbrev}])
Time/DateDescription
Return the localized name of the weekday.
See Also
Parameters Description day Return the localized name of this weekday. (1-7) abbrev If this conditional value is True then return the abbreviated form of the weekday name.
Weekday( )
Sub Main Debug.Print WeekdayName(1) 'Sunday Debug.Print WeekdayName(Weekday(Now)) End Sub