NETWORKDAYS function in Google Sheets
Returns the number of net working days between two provided days.
=NETWORKDAYS(start_date, end_date, [holidays])NETWORKDAYS syntax and parameters
Three arguments, two required.
- start_dateanyRequired
The start date of the period from which to calculate the number of net working days.
- end_dateanyRequired
The end date of the period from which to calculate the number of net working days.
- holidaysanyOptional
[ OPTIONAL ] - A range or array constant containing the date serial numbers to consider holidays. The values provided within an array for holidays must be date serial number values, as returned by N or date values, as returned by DATE, DATEVALUE or TO_DATE. Values specified by a range should be standard date values or date serial numbers.
NETWORKDAYS examples
Formulas you'll actually reuse.
Working days in September 2026, Saturdays and Sundays excluded:
=NETWORKDAYS(DATE(2026, 9, 1), DATE(2026, 9, 30))Result
22Working days of a project, with public holidays listed in H2:H10 skipped too:
=NETWORKDAYS(B2, C2, H2:H10)
NETWORKDAYS in Excel
Same name — your formula ports as-is.
Try NETWORKDAYS in the playground
Edit the example — nothing to install.
Preloaded with the NETWORKDAYS formula from Example 1 — change anything and watch it respond.
Related functions
More ways Google Sheets gets this done.
- DATEConverts a provided year, month, and day into a date.DateExcel
- DATEDIFCalculates the number of days, months, or years between two dates.DateExcel
- DATEVALUEConverts a provided date string in a known format to a date value.DateExcel
- DAYReturns the day of the month that a specific date falls on, in numeric format.DateExcel
- DAYSReturns the number of days between two dates.DateExcel
- DAYS360Returns the difference between two days based on the 360 day year used in some financial interest calculations.DateExcel