How to Calculate Business Days: Formulas and Tools

Published by the MetriqaHub Editorial Team on August 13, 2026.

How to Calculate Business Days: Formulas and Tools

How to Calculate Business Days: Formulas and Tools

Desk calendar and clock representing business day counting

The fastest way to get a business days calculation is to use an online calculator or a spreadsheet function. For a count between two dates, paste them into Metriqahub's Days Between Dates tool and get the result instantly, no account needed. For repeatable work in Excel or Google Sheets, two functions cover almost every scenario:


*

Key Takeaways

Accurate business days calculation requires the right tool, a maintained holiday list, and a documented decision about whether the start date counts as day zero or day one.

PointDetails
Use the right tool for the jobOnline calculators work for quick checks; NETWORKDAYS and WORKDAY handle repeatable, bulk calculations.
Confirm inclusive/exclusive countingNETWORKDAYS counts both endpoints; WORKDAY treats the start as day zero. Verify before committing to a deadline.
Maintain an annual holiday listUpdate observed federal holiday dates every January and version the file by year for auditability.
Lock holiday ranges in spreadsheetsUse absolute references ($E$2:$E$12) so copied formulas don't silently drop part of the holiday list.
Metriqahub for instant resultsThe Days Between Dates calculator delivers a business-day count with no signup, in seconds.
*

Table of Contents

What does a business day calculator actually do?

A business day calculator strips weekends and holidays out of a date range and returns either a count of working days or a target date. Most tools, including Metriqahub's time and date calculators, handle this with a few configurable inputs.

Typical inputs you'll see: What the result looks like: According to the Old Farmer's Almanac calculator, tools default to Monday–Friday workweeks and adjust observed holidays automatically when a federal holiday falls on a Saturday or Sunday. That observed-date shift matters more than most people realize: if July 4 lands on a Saturday, the observed holiday is Friday, July 3, and any deadline that week needs to account for that. Pro Tip: Before you run a calculation, confirm whether your tool includes the end date in the count. A three-business-day SLA that starts Monday and ends Wednesday counts differently depending on whether Wednesday is day 2 or day 3. *

How business-day counting works under the hood

A business day is any weekday, Monday through Friday, that is not a public holiday. Simple enough in theory. In practice, the rules around which days get counted trip up even experienced project managers.

The inclusive vs. exclusive question. Most spreadsheet functions count both the start and end date when they fall on business days. Sheets Bootcamp confirms that NETWORKDAYS includes both endpoints, which aligns with how payroll and SLA systems typically operate. An online calculator may behave differently depending on whether the "include end date" box is checked. Always verify before you commit a deadline to a contract. Common edge cases: A quick manual example. Say you need to count three business days starting Tuesday, May 20. Day 1 is Wednesday, May 21. Day 2 is Thursday, May 22. Day 3 is Friday, May 23. If Monday, May 26 is Memorial Day, and your window started on Friday, May 23 instead, day 3 would land on Tuesday, May 27, not Monday. *

How to add or subtract business days accurately

Adding business days to a date is not the same as adding calendar days. Two approaches exist, and knowing which one your tool uses prevents surprises.


Timeanddate's Add/Subtract workdays tool uses the iterative approach and exposes options to choose which days count as weekends, making it useful for teams that work Sunday–Thursday or Saturday–Wednesday.

Worked example: add 10 business days to Wednesday, May 21, 2025. Quick verification checklist before you finalize a computed date: *

Handling US federal holidays and custom non-working days

Federal holidays are the most common source of off-by-one errors in US business-day calculations. There are 11 federal holidays per year, and several of them shift to an observed date when they fall on a weekend.

The observed-date rule: When a federal holiday falls on Saturday, the observed day is the preceding Friday. When it falls on Sunday, the observed day is the following Monday. The Almanac calculator applies these shifts automatically. If you maintain your own holiday list in a spreadsheet, you need to enter the observed date, not the nominal calendar date, or your count will be wrong. Maintaining a custom holiday list: Non-standard weekends. Teams operating on a Sunday–Thursday or Saturday–Wednesday schedule need a calculator that supports custom weekend definitions. NETWORKDAYS.INTL handles this with a weekend string argument (e.g., "0000011" for Saturday–Sunday, "0000110" for Thursday–Friday). Multi-day shutdowns. A company-wide closure from December 24 through January 1 is easiest to handle by adding each date individually to your holiday list rather than trying to express it as a range in a formula. Example. Your SLA deadline is 5 business days from Monday, December 22. Counting forward: Day 1 = Tuesday Dec 23, Day 2 = Wednesday Dec 24 (if your company closes), Day 3 would skip to Monday Dec 29, Day 4 = Tuesday Dec 30, Day 5 = Wednesday Dec 31. If December 31 is also a company closure, the deadline moves to Thursday, January 1 — which is New Year's Day, a federal holiday, observed Monday January 2 if it falls on a weekend. The deadline lands on Friday, January 2 or the next open business day. That chain of shifts is exactly why a maintained holiday list beats mental arithmetic. Pro Tip: Version your holiday file by year (e.g., holidays_2026.csv) and note the source you used to verify observed dates. When a deadline dispute arises months later, you'll have a clear audit trail. *

Spreadsheet formulas for counting and adding business days

Three functions cover the vast majority of business-day calculation needs in Excel and Google Sheets.

FunctionPurposeCounts start/end?Custom weekends?
NETWORKDAYSCount business days between two datesYes, bothNo
NETWORKDAYS.INTLCount business days, custom weekendYes, bothYes
WORKDAYReturn date after N business daysStart is day zeroNo
WORKDAY.INTLReturn date after N business days, custom weekendStart is day zeroYes
=NETWORKDAYS(start, end, [holidays]) Microsoft documents that this function returns the number of whole working days between start_date and end_date, excluding weekends and any dates in the optional holidays range. Both the start and end dates count when they fall on business days.
=NETWORKDAYS(A2, B2, $E$2:$E$12)
=NETWORKDAYS.INTL(start, end, weekend, [holidays]) Use this when your team doesn't work Monday–Friday. The weekend argument accepts a number (1–17) or a seven-character string of 0s and 1s representing Monday through Sunday. "0000011" is the standard Saturday–Sunday weekend. =WORKDAY(start, days, [holidays]) Returns the date that is exactly N business days from the start. The start date is treated as day zero, so =WORKDAY(A2, 5, $E$2:$E$12) gives you the date 5 business days after A2. Pro Tip: Lock your holiday range with absolute references ($E$2:$E$12, not E2:E12) before copying formulas down a column. A relative reference shifts with each row and silently excludes part of your holiday list.

A copy-paste-ready example: if your start date is in A2, end date in B2, and holidays in E2:E12:

=NETWORKDAYS(A2, B2, $E$2:$E$12)   → count of business days
=WORKDAY(A2, 10, $E$2:$E$12)       → date 10 business days after A2
* Spreadsheet formulas for counting and adding business days — overview diagram

Real-world examples: SLA, shipping, payroll, and project timelines

Abstract formulas are easier to trust once you've seen them applied to a real scenario.


*

The workflow most teams should actually use

The conventional advice is to pick one tool and stick with it. That's fine as far as it goes, but it misses the real operational risk: inconsistency between how different people on the same team count days.

A project manager who counts the start date as day one and a developer whose API counts it as day zero will produce results that differ by exactly one business day, every time, without either of them realizing there's a disagreement. That off-by-one error is invisible until a deadline is missed or an SLA report contradicts a ticket timestamp.

The fix is simpler than most teams make it. Use Metriqahub's Days Between Dates calculator for quick one-off checks where you just need a number fast. Use NETWORKDAYS or WORKDAY in a shared spreadsheet for anything recurring, and lock the holiday range with absolute references so the formula doesn't silently break when someone copies it. Then document two things in the spreadsheet header: the holiday source you used and whether the start date is treated as day zero or day one.

That documentation step is the one almost nobody does, and it's the one that prevents disputes six months later when someone pulls a historical calculation and gets a different answer.

* The workflow most teams should actually use — overview diagram

Metriqahub's date calculators: fast answers, no signup required

Metriqahub's time and date tools give you instant business-day results without creating an account or installing anything. The Days Between Dates calculator handles the most common need: enter a start and end date, choose whether to exclude weekends and holidays, and get a count in seconds. For adding or subtracting time from a date, the Add or Subtract Time tool covers that alongside the full suite of finance and math calculators on the platform.

Metriqahub

These tools are built for the quick check you need before a meeting, not for production automation. For recurring calculations across hundreds of rows, pair them with the spreadsheet formulas above. Open the Days Between Dates calculator now and run your first calculation in under a minute.

*

Sources

The sources below cover function syntax, calculator behavior, and official holiday observance rules.


Recommended


Work the numbers yourself

Our money guides go through home equity and student loan decisions in full, with calculators and every rule cited to its source.

Browse the money guides

General information, not financial advice. See our editorial standards.

How to Calculate Business Days: Formulas and Tools