Comment on page
month
To return the month from a date value as a number
Use this function to return the month from a date value. This will be a number between 1 and 12, with January = 1, February = 2, … December = 12.
month(date)
month(appointment)
month(timestamp)
number
month(myDate)
To return the month of a given date as a number.month(today())
Result: 5 (on May 31, 2021)
month(today()) + 3
Result: 8 (on May 31, 2021)
month(myAppointment)
To return the month of the start date of a given appointment as a number.
month(datetime)
To return the month of a given timestamp as a number.Last modified 1yr ago