MonthName Function
SyntaxGroupMonthName(NumZ{month}[, CondZ{abbrev}])
Time/DateDescription
Return the localized name of the month.
See Also
Parameters Description month Return the localized name of this month. (1-12) abbrev If this conditional value is True then return the abbreviated form of the month name.
Month( )
Sub Main Debug.Print MonthName(1) 'January Debug.Print MonthName(Month(Now)) End Sub