Add / Subtract Days from Date
Enter a starting date and a number of days to add or subtract. Get the exact resulting date instantly.
Result Date
Tuesday, August 18, 2026
2026-08-18
How Date Offset Calculation Works
Adding days to a date is conceptually simple. count forward on a calendar. but month-end boundaries make it easy to get wrong by hand. Adding 30 days to January 15 gives February 14. Adding 30 days to January 31 gives March 2 (or March 1 in a leap year), because February has only 28 or 29 days. A calculator handles these edge cases automatically by converting the start date to a day number, adding the offset, then converting back.
Subtracting days works the same way in reverse. Subtracting 45 days from March 10 gives January 24. crossing the February boundary with its variable length. Year boundaries are also handled: subtracting 10 days from January 5 gives December 26 of the prior year.
Common Use Cases
Deadlines: A contract signed today gives the other party 60 days to respond. Adding 60 days to today's date gives the exact response deadline — useful for setting calendar reminders and legal notices.
Medicine and health: A 14-day antibiotic course started on June 5 ends on June 18 (the 14th day). Prescription labels say "take for X days" — adding X − 1 days to the start date gives the last day to take the medication.
Subscriptions and trials: A 30-day free trial starting today. when does it expire? Add 30 days to find the exact end date, which may differ from "next month" if the current month has 31 days.
Working Backward from a Target Date
Subtracting days is equally useful for planning. If a report is due September 30 and you need 3 weeks to write it, subtracting 21 days gives September 9 as the latest start date. Project managers regularly work backward from launch dates this way, stacking dependencies: launch minus QA time, minus development time, minus design time. each subtraction giving a milestone start date.
Expiration dates on food, medicine, and legal documents also benefit from this approach. If a document is valid for 90 days from issue, subtracting 90 days from the expiry gives the issue date. useful for verifying authenticity or auditing compliance records.