Pick a date below and see how many days are left until it — plus the weekday it lands on, how that breaks down into weeks and months, and how many of those are working days. Then the rest of the page covers the simple formula and the off-by-one that trips everyone up.
—
What "days until" actually means
A countdown is just a subtraction: the target date minus today. The trick is that a date isn't a number, so the safe way to subtract two dates is to turn each into a count of whole days from a fixed reference point and take the difference. That sidesteps months of different lengths, leap years and daylight-saving shifts — all of which quietly break the naïve "subtract the day numbers" approach.
The calculator above does this in your browser. It compares calendar days only, ignoring the time of day, so picking today reads as 0 days, tomorrow as 1, and a past date shows how many days ago it was.
The formula
days until = (target as a day-count) − (today as a day-count)
Both dates are taken at midnight, so only whole days are compared. A positive answer is days remaining; a negative answer is days since.
By hand, the reliable method is to count forward in chunks: whole months first, then the leftover days, adjusting for month lengths. For anything beyond a few weeks that's error-prone, which is exactly why a calculator helps — but knowing the shape of the sum is what lets you sanity-check the result.
The off-by-one everyone hits
Ask two people how many days until Friday and you can genuinely get two right answers, because they're counting differently:
Exclusive ("days until"). You don't count today, and you stop the day before the event. This is the everyday meaning of a countdown — "3 days until the trip" means today doesn't count.
Inclusive ("days including"). Both the first and last day count. A hotel booking from the 10th to the 13th is 3 nights but touches 4 days.
The gap is always exactly one day, so before you trust any countdown, decide two things: does today count, and does the event day itself count? The calculator above uses the everyday exclusive meaning — today is 0, and the target day is the number shown.
Days until the next few holidays
Worked out live from your device clock, so it's always current. Each one points at the next time that date comes around.
Occasion
Date
Days away
—
—
—
"Days away" uses the same exclusive count as the calculator: today is 0. Dates that fall today show as 0; everything else counts forward to the next occurrence.
Counting business days instead
If your countdown is to a deadline rather than a celebration, the calendar-day total is often the wrong unit — what matters is how many working days are left. The calculator counts those too: it's the number of Monday-to-Friday days between now and the target, which is roughly five-sevenths of the calendar gap.
That figure is before public holidays, because holidays differ by country and there's no single correct list. To get the net number, subtract the holidays that apply to you. There's a fuller explanation, the whole-weeks shortcut, and a 2026 month-by-month table on the business days reference.
Where countdowns earn their keep
Deadlines & launches. A clear "N working days left" stops a slip from sneaking up on a Friday afternoon.
Travel & events. Counting days to a trip or a birthday is the classic use — just remember whether the day itself counts.
Notice periods. "30 days' notice" hinges entirely on whether day zero is the day you give notice or the day after.
Savings goals. Days-until turns a far-off date into something concrete you can divide a target by.
Count between two dates, or by week
This page counts from today to a date. To count between any two dates — past or future — use the days-between calculator on the week.hako.to home page, which also adds or subtracts days from a date and tells you the weekday. For the week-number view of the year, see the 2026 week calendar, and to count down to the next equinox or solstice, see when the seasons start.