Add Days Calculator
Adding or subtracting a number of days from a date sounds trivial until you hit a month boundary, a leap year, or a negative number — this handles all of that automatically and gives you the resulting date instantly.
Inputs
Result
Wed Apr 01 2026
2026-04-01
How the add days calculator works
The calculator takes a start date and a number of days (which can be negative to subtract instead of add), and shifts the date by exactly that many calendar days.
Month lengths and leap years are handled automatically by the underlying date system — adding 30 days to January 20th correctly lands on February 19th, not some fixed 'next month, same day' approximation.
Worked example: January 1, 2026 plus 90 days
- January has 31 days, February 2026 has 28 (2026 isn't a leap year), March has 31 — that's 90 days by March 31 (31+28+31=90 from Jan 1).
- So January 1, 2026 + 90 days lands on April 1, 2026, one day past that 90-day mark landing on March 31 itself.
Common mistakes to avoid
Assuming 'add 30 days' always lands on the same day next month
Months have different lengths (28-31 days), so adding exactly 30 days from, say, January 15 lands on February 14, not February 15 — a common source of off-by-one confusion when estimating deadlines mentally.
Forgetting a negative number subtracts rather than adds
Entering a negative days value moves the date backward from the start date — useful for finding 'what date was 45 days before this one', but easy to enter with the wrong sign by habit if you're used to only adding.
Frequently asked questions
How does this handle crossing into a new year?
It's handled automatically and correctly — adding enough days from a date in December rolls the calculation into January of the following year without any special handling needed on your part.
Does this account for leap years automatically?
Yes — the underlying date calculation correctly recognises leap years (like 2028) and gives February 29 the extra day it's due, which affects the exact landing date for calculations that span late February.
Can I use this to count backward from a date?
Yes — enter a negative number of days, and the calculator subtracts instead of adds, landing on the correct earlier date.
Why might I need this instead of just counting on a calendar?
For anything more than a couple of weeks out, manually counting across month boundaries by eye is genuinely error-prone — this guarantees an exact, correct answer instantly regardless of how many months or years the calculation spans.
Learn more
Why 'Add 30 Days' Never Lands Where You Expect
Thirty days from now isn't 'next month, same date' — and the gap between those two answers can matter more than people expect.
Related calculators
Days Until Date Calculator
Countdown in days from today to any date.
Date Difference Calculator
Days, weeks and months between any two dates.
Working Days Calculator
Business days between two dates, excluding weekends.
Week Number Calculator
ISO week number for any date.
Countdown Calculator
Time remaining until an important date.