Google Sheets
ISOWEEKNUM function in Google Sheets
Returns the number of the ISO week of the year where the provided date falls.
=ISOWEEKNUM(date)ISOWEEKNUM syntax and parameters
One argument, one required.
- dateanyRequired
The date for which to determine the ISO week number. Must refer to a cell containing a date, number, or function returning a date type.
ISOWEEKNUM examples
Formulas you'll actually reuse.
The ISO 8601 week of an invoice date (weeks start Monday):
=ISOWEEKNUM(B2)Result
331 Jan 2027 is a Friday, so ISO puts it in week 53 of the previous year:
=ISOWEEKNUM(DATE(2027, 1, 1))Result
53
ISOWEEKNUM in Excel
Same name — your formula ports as-is.
Try ISOWEEKNUM in the playground
Edit the example — nothing to install.
Preloaded with the ISOWEEKNUM formula from Example 1 — change anything and watch it respond.
Loading the editor…
Related functions
More ways Google Sheets gets this done.
- DATEConverts a provided year, month, and day into a date.DateExcel
- DATEDIFCalculates the number of days, months, or years between two dates.DateExcel
- DATEVALUEConverts a provided date string in a known format to a date value.DateExcel
- DAYReturns the day of the month that a specific date falls on, in numeric format.DateExcel
- DAYSReturns the number of days between two dates.DateExcel
- DAYS360Returns the difference between two days based on the 360 day year used in some financial interest calculations.DateExcel