Count Business Days Between Two Dates
Your turnaround targets are measured in working days, not calendar days — a quote answered in "5 business days" — so weekend days between the two dates must not count.
Excel & Google Sheets
This formula works in both Excel and Google Sheets.
How it works
NETWORKDAYS walks from the start date to the end date and counts only Mondays through Fridays, skipping every Saturday and Sunday automatically. The count is inclusive of both endpoints when they fall on weekdays — Wednesday 1 July to Wednesday 8 July is 6 business days, not 5, so subtract 1 if you want days elapsed rather than days touched. An optional third argument takes a range of holiday dates to exclude as well: =NETWORKDAYS(A2,B2,$D$2:$D$5) skips any listed holiday that falls in the window. It works identically in Excel and Google Sheets.
When to use it
Use it to measure quote turnaround, support-ticket resolution in working days, invoice processing time, or how many working days a project phase consumed.
Common mistakes
Did this formula help?
Engine-verified against the sample data aboveDownload the proof sheet (.xlsx)Last reviewed 2026-07-09