Math & Statisticsintermediate
SUMIFS for monthly revenue by category
=SUMIFS($D:$D,$B:$B,$G$2,$C:$C,">="&DATE(2026,1,1),$C:$C,"<"&DATE(2026,2,1))
Estimate project duration, delivery lead time, or turnaround windows in business days instead of calendar days.
Step-by-step instructions
Put the project start date in B2 and the end date in C2.
Use NETWORKDAYS to count only weekdays between those dates.
Add an optional holiday range later if you need to exclude company holidays too.
Example data
| Start Date | End Date | Business Days |
|---|---|---|
| 2026-04-01 | 2026-04-10 | 8 |
| 2026-04-06 | 2026-04-17 | 10 |
Common mistakes
Result seems too high
Check that the cells are real dates, not text strings that only look like dates.
FAQ
Can NETWORKDAYS exclude holidays too?
Yes. Add a third argument with a holiday range and Excel will exclude those dates from the count.
Related how-to guides