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