ISOWEEKNUM

ISOWEEKNUM(date)

Returns the week number in the year for a given date (based on European convention).

dateThe date.

REMARKS
* This function returns a number between 1 and 54.
* This function returns the week number according to the European convention.
* The week number returned is according to the European ISO standard.
* All weeks start on a Monday and week number 1 is assigned to the first week that contains a Thursday.
* If "date" is not a valid date, then #VALUE is returned.
* If "date" is not a valid number, then #NUM is returned.
* You can use the DATEVALUE function to return the date serial number given a date in text format.
* You can use the NOW function to return the serial number of the current system date and time.
* You can use the TODAY function to return the serial number of the current system date.
* You can use the WEEKNUM function to return the week number in the year for a given date (based on US convention).
* This function was added in Excel 2013.
* For the Microsoft documentation refer to support.microsoft.com
* For the Google documentation refer to support.google.com

 A
1=DATEVALUE("1 Jan 2021") = Friday
2=DATEVALUE("1 Jan 2022") = Saturday
3=DATEVALUE("1 Jan 2023") = Sunday
4=DATEVALUE("1 Jan 2024") = Monday
5=DATEVALUE("1 Jan 2025") = Wednesday
6=DATEVALUE("1 Jan 2026") = Thursday
7=DATEVALUE("1 Jan 2027") = Friday
8=ISOWEEKNUM("1 Jan 2021") = 53
9=ISOWEEKNUM("1 Jan 2022") = 52
10=ISOWEEKNUM("1 Jan 2023") = 52
11=ISOWEEKNUM("1 Jan 2024") = 1
12=ISOWEEKNUM("1 Jan 2025") = 1
13=ISOWEEKNUM("1 Jan 2026") = 1
14=ISOWEEKNUM("1 Jan 2027") = 53
15=ISOWEEKNUM(DATEVALUE("1 Jul 2024")) = 27
16=ISOWEEKNUM(DATE(1, 1, 2024)) = 29

1 - What is the current system date. This cell has been formatted with the number format "dddd, mmmm dd, yyyy".
2 - What is the current system date and time. This cell has been formatted with the number format "dddd, mmmm dd, yyyy, hh:mm".
3 - What is the week number for the date.
4 - What is the week number for the date.

© 2025 Better Solutions Limited. All Rights Reserved. © 2025 Better Solutions Limited Top