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






WeekdayName(Weekday(Date), True)

 
Sub Main4()
   Debug.Print "Today's date is: " & Date
   Debug.Print "The weekday abbreviated is: " & WeekdayName(Weekday(Date), True)
End Sub

 








Related examples in the same category

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