How Date and Business-Day Math Actually Works
Business-day calculations count only weekdays (Monday through Friday), skipping Saturdays and Sundays entirely — adding 10 business days to a Friday lands two full weeks later, not two weeks minus a weekend. Most calculators don't account for public holidays unless explicitly built to, which is worth checking for anything with legal or contractual significance.
"Add 10 business days" sounds like simple arithmetic until weekends land in the middle of the count, and manual calculations are a surprisingly common source of off-by-one errors — usually from an inconsistent choice about whether the start date itself counts.
How business-day addition actually works
The calculation steps forward one day at a time from the start date, only counting a day toward the total if it's a weekday. A Saturday or Sunday is skipped entirely — it doesn't count as one of the business days, and the process simply continues to the next day.
This means 10 business days from a Friday isn't "10 days later" (which would land on the following Monday) — it's a full two calendar weeks later, since two weekends fall inside that span.
Why manual day counts are commonly off by one
The most frequent source of error is inconsistency about whether the start date itself is counted. "From March 1st to March 10th" can mean either 9 days or 10 days depending on whether both endpoints are included — and different people (and different systems) sometimes make different assumptions silently.
The fix is to be explicit: decide up front whether the count is inclusive of both dates, inclusive of one, or exclusive of both, and apply that consistently — most calculators default to counting full days between two dates, excluding the start date, unless told otherwise.
Calendar days vs. business days: when each applies
Calendar days count every single day, weekends included — used for things like age, rent periods, or subscription billing cycles. Business days matter for anything tied to when businesses and institutions actually operate: bank transfers, legal notice periods, shipping estimates, and most contractual deadlines.
A 30-calendar-day notice period and a 30-business-day notice period can differ by nearly two weeks, which is why contracts and legal documents are usually explicit about which one applies — worth double-checking before assuming either default.