How to Count Days Between Dates — Without Off-by-One Mistakes
Deadlines, visas, contracts and exams all come down to counting days — and the most common error in all of them is being off by exactly one.
The one rule that prevents most mistakes
When you count "days between" two dates, the standard convention counts the nights between them: from Monday to Wednesday is 2 days, not 3. The start day is excluded, the end day effectively included. This is how hotels charge, how age is measured, and how most legal deadlines work.
But some situations count both ends — a 7-day medicine course starting Monday ends Sunday, not next Monday. When instructions say "for X days including today," add 1 to the between-count. Knowing which convention applies is the whole game.
Calendar days vs working days
A "30-day deadline" usually means calendar days — weekends included. A "10 working day" processing time skips Saturdays and Sundays (and public holidays). The gap is bigger than people expect: 10 working days is normally 14 calendar days, and 30 calendar days contains only about 21–22 working days. Misreading which type a deadline uses is how people miss visa windows and legal response dates.
Leap years and month lengths
February has 29 days in leap years (2024, 2028, 2032…), months alternate 30/31 days, and "one month later" is genuinely ambiguous — is 31 January + 1 month the 28th of February or the 3rd of March? Correct date math never multiplies by approximations like 30.44; it walks the real calendar, which is what a proper calculator does and mental arithmetic doesn't.
Common real-world counts
- Visa validity: "90 days within any 180-day period" — count carefully; overstaying by one day can mean a ban.
- Notice periods: 30/60/90 days from the date notice is received, usually calendar days.
- Cheque and invoice terms: "Net 30" runs from the invoice date, calendar days.
- Exam countdowns: knowing there are exactly 47 days left plans better than "about a month and a half".
Frequently asked questions
Do I count both the start and end date?
Normally no — count the nights between the dates. For rentals, medicine courses or anything "including today," add 1.
What are working days?
Days excluding weekends. Public holidays also don't count, but they vary by country — subtract them manually.
How do I find the date 90 days from today?
Use the add-days tool in the Days Calculator — it crosses month lengths and leap years correctly.