MONTHNAME

Syntax:

MONTHNAME(number)

Returns a text string of the month given by number (with modular range reduction of number into [1,12]).

Examples:

MONTHNAME(27)

returns the text string "March"

MONTHNAME(MONTH(TODAY))

returns the name of the current month as a text string.