About the Days Until Calculator
This calculator finds the span between two dates — a start date (defaulting to today) and a target date you choose — using a plain midnight-to-midnight day count. It reports the total number of calendar days, the count of business days (Monday through Friday only), the same span broken into weeks and days, and the day of the week the target date falls on.
How the calculation works
- Both dates are converted to local midnight, the difference is taken in milliseconds, then divided by 86,400,000 (the number of milliseconds in a day) and rounded to the nearest whole day.
- Business days are counted by stepping day-by-day from the start date to the target date and counting only Monday through Friday. Public holidays are not excluded, since holiday calendars vary by country and organization.
- Turning on "Count the start date as day 1" adds one extra day to the total, matching how people often count spans inclusively — Dec 1 to Dec 25 inclusive is 25 days, not 24.
Reading the result
A positive day count means the target date is still ahead of the start date; zero means the two dates are the same; a negative count means the target date has already passed relative to the start date. The business-day figure is always less than or equal to the calendar-day figure, since it strips out every Saturday and Sunday in the span.