The Days Until Calculator answers the everyday question "how many days until…?" — and its mirror, "how many days since…?" It converts the gap between two dates into total days plus week, month, and year breakdowns, and it can switch from raw calendar days to working days when a deadline depends on the business calendar.

How the count is calculated

Every date is read at your local midnight, so the engine compares pure calendar days rather than clock times. The total is the difference in milliseconds divided by 86,400,000 (the number of milliseconds in a day), rounded to a whole number. Rounding is deliberate: it absorbs the extra or missing hour that daylight-saving transitions add, so a span never gains or loses a day just because the clocks changed.

The years–months–days breakdown walks the actual calendar. Instead of dividing by an average month length, it borrows the real number of days in the preceding month when needed. That is why the same "2 months" can be 59, 60, 61, or 62 days depending on which months your range crosses.

Inclusive vs. exclusive day counting

The single biggest source of off-by-one confusion is whether you count both endpoints or just the gaps. This calculator counts the gaps: it excludes the start day and includes the target day. So from today to tomorrow is 1 day, and a date set to today reads 0 — it's today. That convention matches how people naturally say "three days until Friday."

Some contexts — rental days, hospital stays, hotel nights, contractual notice periods — count inclusively, adding one to include both endpoints. If you need inclusive counting, simply add one to the calendar-day figure, and remember that legal or contractual deadlines may define the count differently again.

Counting business days

Many real deadlines run on working days, not calendar days. "Net 30" invoices, court filing windows, and shipping SLAs often mean 30 business days. The Business Days tab counts only Monday through Friday, and can additionally remove the eleven U.S. federal holidays (New Year's Day, MLK Day, Presidents' Day, Memorial Day, Juneteenth, Independence Day, Labor Day, Columbus Day, Veterans Day, Thanksgiving, and Christmas) plus any custom dates you paste in.

Because weekends alone remove two of every seven days, a business-day count is always meaningfully smaller than the calendar count — typically about 71% of it before holidays. Planning against the working-day figure keeps timelines honest when a span includes long weekends and holiday clusters.

Limits and edge cases

The calculator uses the proleptic Gregorian calendar and your device's local time zone; it does not model time-of-day, partial days, or historical calendar reforms. Federal holidays are U.S.-specific — users in other countries should rely on the custom-holiday field. When a federal holiday falls on a weekend the observed day may shift in practice, but the tool counts the statutory date. For legally binding deadlines, confirm the counting rule with the governing statute or contract.