To count business days between two dates — skipping weekends and, optionally, holidays — use NETWORKDAYS. It is the right tool for SLAs, project durations, and “days to ship” calculations where Saturdays and Sundays shouldn’t count.
The example
Working days from start to end (weekends excluded).
| A | B | C | D | |
|---|---|---|---|---|
| 1 | Task | Start | End | Work days |
| 2 | Build | 6/1/2026 | 6/12/2026 | 10 |
| 3 | Review | 6/15/2026 | 6/19/2026 | 5 |
The formula
Working days in D2:
How it works
NETWORKDAYS walks the calendar between the two dates:
- It counts each day from
B2toC2, including both ends. - Saturdays and Sundays are automatically excluded.
- Jun 1 (Mon) to Jun 12 (Fri) 2026 spans two work weeks —
10business days. - Add a third argument — a range or list of holiday dates — and those are skipped as well.
Try it: interactive demo
Pick a start and end date; see the working-day count (weekends excluded).
Variations
Skip holidays too
List public holidays in a range (e.g. F2:F6) and pass it as the third argument:
Custom weekend (e.g. Fri–Sat)
NETWORKDAYS.INTL lets you choose which days are the weekend (7 = Friday+Saturday):
Add N working days to a date
The companion WORKDAY function jumps forward by business days — a due date 10 working days out:
Pitfalls & errors
Both ends are counted. NETWORKDAYS is inclusive, so a Monday-to-Monday span counts both Mondays. Subtract 1 if you want elapsed working days rather than the count.
Dates stored as text. If the dates are left-aligned text, NETWORKDAYS returns #VALUE!. Convert with Text to Columns or DATEVALUE.
Holidays must be real dates. The holiday list has to contain genuine date values (not text) for them to be skipped.
Practice workbook
Frequently asked questions
How do I count working days between two dates in Excel?
How do I exclude holidays from the count?
How do I use a weekend other than Saturday/Sunday?
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