About the Add Time Calculator
This calculator takes a start date and time, converts the days, hours, and minutes you enter into a single duration, and adds (or subtracts) that duration to produce a resulting date and time. It works the way a clock and calendar actually work together: the underlying timestamp advances by the exact number of elapsed minutes, and the calendar display — month, day, year, hour — is recalculated from that timestamp afterward.
How the addition works
- Days, hours, and minutes are first combined into one total number of minutes: days × 1,440 + hours × 60 + minutes. Choosing "Subtract" flips the sign of that total.
- The total is added to the start date and time as elapsed time, not as separate calendar fields — so overflow handles itself. Ninety minutes automatically becomes 1 hour 30 minutes, 30 hours becomes 1 day 6 hours, and enough days will correctly roll into the next month or year, including leap years.
- Because the result is built from real elapsed minutes and then re-expressed on your local calendar, a span that crosses a daylight-saving-time change will show the clock-time shift that actually happens on that date.
Common uses
- Project deadlines and milestone planning
- Legal and contractual date calculations (90-day cure periods, notice windows)
- Financial calculations using day-count conventions (Actual/365, Actual/360, 30/360)
- Personal planning: countdown timers, anniversary tracking, elapsed time
Precision note
If your calculation has legal or contractual significance, verify the result — some jurisdictions count the first day, some count only the last, and banking uses different day-count conventions than calendar math.