Monthname() |
Working with Formulas > Functions Used in Formulas > Date/Time Functions > Monthname()
MONTHNAME() returns a character string with the corresponding month name for the date that was input. If a null date is specified, the function returns an empty string.
Function Format
MONTHNAME(date)
Return Value
MONTHNAME() returns a character string
Examples
MONTHNAME(DATE("07/04/2007")) = "July"
MONTHNAME(DATE(2007, 12, 25)) = "December" |