Skip to main content
Version: Streamsheets 3.0

MONTH

Returns the month of the serial number.

Syntax

=MONTH(DateValue, [Round])

Arguments

NameTypeDescription
DateValueNumberA serial number consists out of two numbers. The number to the left of the decimal define the days since 01.01.1900. The number to the right of the decimal define the fraction of the day.
Round (optional)BooleanDefines if value should be rounded.

Default value: TRUE

Return

TypeDescription
NumberMonth evaluated from date value.

Examples

FormulaResultComment
=MONTH(43238)
5The given date value represents the 18th of May, 2018
=MONTH(39447.99999422, true)
1Rounded to 1
=MONTH(39447.99999422, false)
12Same input value as before but no rounding applied