
MonthName
MonthName(month, abbreviate)
Returns a string name for the specified month.
Parameters
- month - A whole number representing the month of the year, with values between 1 and 12, where 1 represents January.
- abbreviate - An optional Boolean value that indicates if the month name is to be abbreviated. If the abbreviate value is true, the function will return the abbreviated month name. Otherwise the function will return the full month name.
Return value
String value.
Examples
MonthName(4) - Returns String value April.
MonthName(12, true) - Returns String value Dec.
MonthName(12, false) - Returns String value December.
