How to Count Business Days Between Two Dates (Without Miscounting Either End)
Ask three people to count the working days between two dates and you'll often get three answers. The math looks trivial — it isn't. Two questions decide everything: which days count as working days, and do you include the endpoints.
The off-by-one trap
Say a task starts Monday and is due Friday of the same week. Is that four business days or five? Both can be "correct" depending on convention. If you count the gaps between days, it's four. If you count the days you actually work on the task, it's five. Contracts, SLAs, and shipping estimates all pick one convention — and rarely state which.
The safe habit: decide whether your count is inclusive (both endpoints count) or exclusive (neither does) before you start, and write it down.
Weekends are the easy part
Skipping Saturday and Sunday is straightforward. The errors creep in around public holidays, which differ by country, by state or province, and sometimes by city. A US federal holiday calendar will happily miscount a deadline that runs through a UK bank holiday.
Let the tool carry the rules
Rather than maintaining a holiday list in your head, the Business Days Between Two Dates calculator lets you pick a country, toggle the inclusive/exclusive convention, and add any custom closures. It removes both the weekend arithmetic and the holiday lookup in one step.
A quick checklist
- State your convention (inclusive vs exclusive) up front.
- Choose the holiday calendar that actually governs the deadline — not just the one you happen to live under.
- When a date range spans a holiday you're unsure about, add it as a custom closure rather than assuming.
Get those three right and the count takes care of itself.