How to Calculate Days Between Dates by Hand (and Where It Goes Wrong)
September 18, 2026
The core method: convert both dates to a day count from a fixed reference point, then subtract. The two places manual counting most often goes wrong are whether to count the start date itself (inclusive vs. exclusive counting) and forgetting to account for leap years.
Skip the math and get your answer instantly:
Open the Date Calculator →Inclusive vs. Exclusive Counting
From March 1 to March 10, exclusive counting (just subtracting the dates) gives 9 days. Inclusive counting (counting both the start and end date) gives 10 days. Which one is 'correct' depends entirely on context — a contract that says '10 days from March 1' likely means inclusive counting, while a simple date-difference calculation is normally exclusive. Always check which convention applies to your specific situation, especially for legal or financial deadlines.
Leap Years Change the Count
Any date range spanning a leap year's February 29 has one more day than the same range would have in a non-leap year. Counting by hand, it's easy to forget this extra day, especially for ranges spanning multiple years where you'd need to check each year individually for whether it's a leap year (divisible by 4, except century years not divisible by 400).
Calendar Days vs. Business Days
A simple date difference counts every calendar day, including weekends and holidays. Many deadlines — contract terms, legal notice periods — are specified in business days instead, which exclude weekends and sometimes public holidays. Confusing the two is a common source of missed deadlines; always check which type of 'days' a specific requirement is using.
Frequently Asked Questions
How do I calculate the exact number of days between two dates?
Convert both dates to a day count (days since a fixed reference date), then subtract the earlier count from the later one — this correctly accounts for varying month lengths and leap years without manual month-by-month counting.
Should I count the start date or not?
It depends on context — 'exclusive' counting (subtracting dates) doesn't count the start date, while 'inclusive' counting counts both the start and end date, adding one extra day. Check which convention applies to your specific deadline or requirement.
How do leap years affect a day count?
Any date range spanning February 29 in a leap year has one additional day compared to the same range in a non-leap year — easy to miss when counting by hand across multiple years.
What's the difference between calendar days and business days?
Calendar days count every day including weekends and holidays; business days exclude weekends (and sometimes public holidays), which matters for deadlines specifically defined in business days.
How do I quickly check if a year is a leap year?
A year is a leap year if it's divisible by 4, except century years (divisible by 100), which are only leap years if also divisible by 400 — so 2000 was a leap year, but 1900 was not.