Excel Functions

How to Use ISOWEEKNUM Function in Excel?

The ISOWEEKNUM function returns the week number of the year based on the given date value in Excel.

Excel ISOWEEKNUM Function
Excel ISOWEEKNUM Function

ISOWEEKNUM Function: A Brief

The ISOWEEKNUM function in Excel inputs a date and returns the week number (from 1 to 54) based on ISO standards. In this system the weeks start on Monday, and week 1 is the first week of the year that includes a Thursday. You can find more information about ISO WEEK DATE here on the official wikipedia page: ISO Week Date.

Function Compatibility:

The ISOWEEKNUM function was introduced in 2013. All Excel versions released after 2013 support this function.

ObjectiveValue Returned by function
Aim to return the ISO Number from input date.ISOWEEKNUM Function will return a ISO numeric values from the input date values.

ISOWEEKNUM Function: A Syntax

=ISOWEEKNUM(date_value)
  • date_value: A valid excel date value in serial number or proper date format.

The ISOWEEKNUM function returns the week number from the input date based on ISO standards. According to this ISO standard the weeks start on Monday, and week 1 is given to the first week of the same year that includes a Thursday.

Difference B/W WEEKNUM & ISOWEEKNUM Function in Excel:

WEEKNUM FunctionISOWEEKNUM Function
This function calculates the week number starting from January 1 (week 1), and the week can start on Sunday or Monday based on return type.This function calculates week numbers based on the ISO standard, where the week starts on Monday.
Follows the U.S. system.Follows the ISO 8601 standard and week 1 is the week with the first Thursday of the year.

Basic Example of Using ISOWEEKNUM Function:

If you’re working in an office where employee’s reports need to be submit weekly and you want to calculate the ISO Week number for each submission date to group and analyze weekly reports. Note: week starting on Monday, according to the ISO 8601 standard.

Input DateISOWEEKNUM ResultFormula Used
01-Jan-20241=ISOWEEKNUM(B4)
15-Jan-20243=ISOWEEKNUM(B5)
25-Mar-202413=ISOWEEKNUM(B6)
30-Jun-202426=ISOWEEKNUM(B7)
02-Sep-202436=ISOWEEKNUM(B8)
31-Dec-20241=ISOWEEKNUM(B9)
Basic Example of using ISOWEEKNUM Function
Basic Example of using ISOWEEKNUM Function

Example of using ISOWEEKNUM Function with other Nested Functions:

The below formula is used to identify the cell value contains a valid Excel date value or not.

=IF(AND(ISNUMBER(B4),B4<>""), ISOWEEKNUM(B4), "Invalid or Empty")
ISOWEEKNUM Function with nested functions
ISOWEEKNUM Function with nested functions

From the above image, you can see that the ISOWEEKNUM Function:

  • Is returning the ISO week number for a valid input Excel date value.
  • Is returning the “Invalid or Empty” for both the “Empty cell value” & “Text value.”

That’s it.

Vigneshwaran Vijayakumar.

Feel free to comment us below, if you have any queries about the above topic and find more interesting excel tutorials on our homepage: Excel24x7.com.

References:

Vigneshwaran Vijayakumar

Hello, I’m Vigneshwaran Vijayakumar, also known as Vikroger, the founder, owner, and author of WinSides.com. With nearly a decade of experience in blogging across various domains and specializing in Windows-related tutorials for over five years, I bring a wealth of knowledge and expertise to WinSides.com. Expanding my expertise, I am now stepping into Excel24x7.com aiming to provide high-quality, in-depth articles that simplify Excel for users of all levels. My goal is to make learning Excel as seamless as possible, offering practical solutions and insights to enhance productivity and efficiency.
Back to top button