WeekdayName(Weekday(Date)) : WeekdayName « Date Functions « VBA / Excel / Access / Word






WeekdayName(Weekday(Date))

 
Sub Main3()
   Debug.Print "Today's date is: " & Date
   Debug.Print "The name of the week day is: " & WeekdayName(Weekday(Date))
End Sub

 








Related examples in the same category

1.WeekdayName (weekday) returns A String containing the weekday denoted by weekday
2.WeekdayName(Weekday(Date), True)