Dates function

MONTH

Which month is this date in?

Purpose

Pull the month out of a date

Returns

A number from 1 to 12

Syntax

=MONTH(date)

ArgumentRequiredWhat goes here
dateRequiredThe cell holding the date, usually A2.

How to use MONTH

MONTH gives back the month number, so January is 1 and December is 12.

It answers the cut-off question: is this transaction in the period it is dated in, or has it landed in the wrong one.

On its own it is not enough. October 2025 and October 2026 both give 12, so a test that only looks at the month will happily accept a year-old invoice.

Examples

Every result below is worked out by the same evaluator that marks your answers, on the sheet shown here.

Receivables ageing — October.xlsxSheet1
A receivables schedule with its reporting date above the data, the layout a real ageing uses
ABCDE
1Reporting date2026-10-31
2
3InvoiceInvoice dateTerms (days)AmountCustomer
4INV-90012026-07-14301200Calder Utilities
5INV-90022026-08-2930640Brightwell Paper
6INV-90032026-09-03453100Meridian Freight
7INV-90042026-09-3014455Thornbury Print
8INV-90052026-10-12302080Calder Utilities
9INV-90062026-10-2760725Ashgrove Catering
FormulaResult
=MONTH(B4)July, as a number.7
=MONTH(B9)=MONTH(B1)The invoice is dated in the reporting month.TRUE
=IF(MONTH(B6)=MONTH(B1),"In period","Out of period")A September invoice against an October reporting date.Out of period
=COUNTIF(B4:B9,">=2026-10-01")The other way to ask the same question, comparing whole dates rather than taking them apart.2

Notes

  • Check the year alongside the month, or two different Octobers will be treated as one.
Practise MONTH in Unit 25

A reference tells you what it does. A unit makes you use it.