Description
MonthName returns a string name for the specified month.
Overloads
MonthName (month, abbreviate)
Arguments
month is a whole Number representing the month of the year, value between 1 and 12, with 1 being January.
abbreviate is an optional Boolean value that indicates if the month name is to be abbreviated. If omitted, the default is False.
Action
MonthName returns a string name for the specified month.
Examples
MonthName (4)
Returns the String value "April".
MonthName (4, True)
Returns "Apr".