—
ms
—
day
14
days
4
days
2
weeks
—
ms
—
day
14
days
4
days
2
weeks
The Date +/- Business Days Calculator computes the date that falls exactly N business days (Monday through Friday, excluding weekends) before or after a starting date. Business day counting is distinct from calendar day counting and is critical in professional, legal, financial, and commercial contexts where activities only occur on working days.
Business day deadlines appear throughout professional life: court filing deadlines (e.g., respond within 10 business days), bank wire transfer processing windows (typically 1-3 business days), shipping and delivery timelines (e.g., arrives in 5-7 business days), employment notice periods (often expressed in business days), regulatory filing deadlines, and contract performance periods. In all of these contexts, weekends are non-working days and must be skipped when counting.
This calculator iterates through calendar days, counting only Monday through Friday and skipping Saturday and Sunday. While holidays are not automatically excluded (as they vary by country, state, and industry), the calculator accounts for the two weekend days per week systematically. For calculations involving specific public holidays, you should add the number of holidays in the period to your business day count.
The output includes the result date, its day of the week (always a weekday for standard business day calculations), the total calendar days elapsed, and the number of weekend days skipped. This transparency helps you verify the calculation and plan accordingly. A 10-business-day window always spans at least 14 calendar days (2 weeks), and the exact calendar span depends on whether the start falls mid-week or at a week boundary.
The algorithm iterates one day at a time from the start date in the specified direction (forward or backward), counting only days where the day of the week is Monday (1) through Friday (5), skipping Saturday (6) and Sunday (0):
while (counted_business_days < target_business_days) { advance one calendar day; if (day_of_week != Saturday && day_of_week != Sunday) { counted_business_days++; } }
For 10 business days forward from a Monday: the algorithm advances through Mon-Fri (5 days = 1 week), skips Sat-Sun, advances through Mon-Fri again (5 more days = 2nd week), reaching the second Friday — 14 calendar days total.
Calendar days = total calendar days elapsed. Weekends skipped = calendar days - business days.
The result date is always a weekday (Monday-Friday) since the algorithm only stops on non-weekend days. The calendar days shows the total elapsed time including weekends. The weekends skipped field tells you how many weekend days were in the interval — this is useful for verifying the calculation and understanding the total calendar duration. Note that this calculator does not exclude public holidays; add holiday counts manually if needed for strict business-day compliance.
Inputs
Results
10 business days after March 13, 2026 (Friday) is March 27, 2026 — also a Friday. 14 calendar days elapsed, 4 weekend days skipped.
Inputs
Results
5 business days before March 13, 2026 is March 6, 2026. The 7-calendar-day span included 2 weekend days.
A business day is any day that is not a Saturday or Sunday. This calculator uses that definition. In some industries or jurisdictions, business days also exclude public holidays (New Year's Day, Christmas, national holidays). This calculator does not automatically exclude holidays — add holiday counts to your business day total if needed.
No — the start date is the reference point (day 0) and is not counted. The first business day counted is the next business day after the start date when adding, or the previous business day when subtracting.
Because the algorithm only increments the counter on weekdays. The final day reached (when the counter hits the target) is always a weekday. If you need the result to be adjusted for holidays, add the holiday count to your business day input.
The algorithm starts counting from the start date and immediately moves to the next (or previous) day, only counting weekdays. So if you start on a Saturday and add 5 business days, the first business day counted is Monday, and you end on the following Friday.
Identify the public holidays in your jurisdiction that fall within the calculation period. Add that count to your business days input. For example, if there is one public holiday in a 10-business-day window, enter 11 business days to get the correct result.
10 calendar days is exactly 10 days. 10 business days spans at least 14 calendar days (2 full weeks) because weekends are skipped. Depending on the start day and any holidays, it could span 14-16 calendar days.
Yes. Most shipping carriers use business days for delivery estimates. Enter the ship date, add the carrier's stated business days, and the result is the estimated delivery date. Note that carrier processing cutoffs and regional holidays may add additional days.
The calculator supports up to 1,000 business days (approximately 4 years of working days). This covers most practical use cases from short payment terms to multi-year project schedules.
Yes. If you know a deadline date and want to find when a process should have started (e.g., 10 business days before the deadline), enter the deadline date, choose Subtract, and enter the business day count. The result is the latest start date.
Yes — business days and working days are used interchangeably to mean Monday through Friday, excluding weekends. The term varies by region but the calculation method is identical.
Roboculator Team
The Roboculator Team explains calculations, planning tools, and practical formulas in clear language for real-life situations.
How helpful was this calculator?
Be the first to rate!