WEEKNUM turns a date into a week number — this is the reverse. Given a year and a week number, compute the actual calendar date the week starts on.
The example
The Monday that begins each ISO week of 2026.
| A | B | C | |
|---|---|---|---|
| 1 | Year | Week | Week starts |
| 2 | 2026 | 1 | Mon 12/29/2025 |
| 3 | 2026 | 10 | Mon 3/2/2026 |
| 4 | 2026 | 26 | Mon 6/22/2026 |
The formula
The Monday that starts a given ISO week:
How it works
Work back to the first week’s Monday, then add weeks:
DATE(B1,1,4)lands on January 4, which is always inside ISO week 1 (the week containing the first Thursday) — a reliable anchor in every year.WEEKDAY(…,2)returns 1–7 with Monday = 1, so subtracting it (and adding 1) snaps back to that week’s Monday.(B2-1)*7jumps forward the right number of weeks to reach the target week’s Monday.- For a US-style (Sunday-start, week 1 = the week of Jan 1) convention, use
=DATE(B1,1,1) - WEEKDAY(DATE(B1,1,1)) + 1 + (B2-1)*7.
Want any weekday of that week? Add an offset: +0 for Monday through +6 for Sunday. To get the week’s Friday, add 4 to the Monday result.
Try it: interactive demo
Enter a year and ISO week number.
Variations
US (Sunday-start) week
Week 1 = the week of Jan 1:
Any weekday of the week
Add 0 (Mon) to 6 (Sun):
Reverse check (date → week)
ISO week number of a date:
Pitfalls & errors
Week-numbering systems differ. ISO (Monday start, week 1 has the first Thursday) and US (Sunday start, week 1 has Jan 1) give different dates. Match the system your data uses.
Week 1 can start in December. ISO week 1 of 2026 begins Mon 12/29/2025 — that’s correct, not a bug.
Format as a date. The result is a serial number; apply a date format so it doesn’t show as 46000-something.
Practice workbook
Frequently asked questions
How do I get a date from a week number in Excel?
Why does week 1 start in the previous December?
How do I get a US-style week date instead?
Stop fighting formulas. Learn them in a day.
This recipe is one of hundreds of real-world formulas we teach. Our Excel Formulas & Functions class covers lookups, logic, text, and dynamic arrays hands-on — live in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.
See the Formulas & Functions Class