Links

monthName

To return the full month name of a given date value
This function will display the month’s name. This might be helpful if you want to group dates within a year by month.

Syntax

monthName(date)
monthName(date, string)
monthName(number)
monthName(number, string)

Return

string

Examples

monthName(myDate) To return the full month name of a given date.
monthName(myDate, language) To return the full month name of a given date in a specific language supported by Ninox.
1
monthName(date(2021, 7, 3), "fr")
Result: Juillet
monthName(monthNumber) To return the full month name of a given month number with 1 = January, 2 = February, … 12 = December.
1
monthName(7)
Result: July
monthName(monthNumber, language) To return the full month name of a given month number in a specific language supported by Ninox.

See also

weekdayName, which returns the full weekday name of a given date value.
Last modified 1yr ago