Public Function Weekday(ByVal InputDate As Date, Optional ByVal FirstDayOfWeek As Long = 0) As Long
Returns the number of the day in the week for a specified date (1-7).
SendDebug $"Today is {({"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"})(Weekday(Date) - 1)}" 'Prints the name of today. '-1' because arrays are zero-based, while weekday is 1-based