What NETWORKDAYS does
NETWORKDAYS counts business days between two dates. It excludes Saturdays and Sundays by default and can also ignore a custom holiday list.
Practical examples
Count business days between two dates
=NETWORKDAYS(A2,B2)
This is useful for turnaround time, staffing calculations, or lead-time tracking.
Exclude a list of holidays
=NETWORKDAYS(A2,B2,F2:F10)
The range F2:F10 can hold company shutdown dates or public holidays.
Common mistakes and notes
NETWORKDAYS includes both boundary dates when applicable
That behavior can make the total seem off by one if you expected only the full days in between.
Weekend rules are fixed unless you use NETWORKDAYS.INTL
If your workweek is not Monday through Friday, use NETWORKDAYS.INTL so the weekend definition matches reality.
Holiday entries must be valid dates
If the holiday list contains text or inconsistent date formats, those days may not be excluded correctly.