About the Add Minutes Calculator
This tool adds (or subtracts) a number of minutes from a starting clock time and reports the resulting time, the date it falls on, and whether it crossed into a different day. It works on simple modular arithmetic: since a day has 1,440 minutes (24 x 60), the calculator wraps the result around midnight automatically whenever the total drops below 0 or passes 1,440.
How the calculation works
- Convert the start time to minutes since midnight: hours x 60 + minutes.
- Add the minutes you entered — a negative number subtracts instead of adds.
- Divide the total by 1,440 (minutes per day). The remainder, kept between 0 and 1,439, is the new time of day; the whole-number part of the division is how many days were gained or lost.
- Convert that remainder back into hours and minutes for both 12-hour (AM/PM) and 24-hour display.
Common uses
- Figuring out what time a meeting, flight, or shift ends after adding a duration
- Working out an arrival time after a delay ("departs at 11:40 PM, delayed 55 minutes")
- Subtracting minutes to find a start time from a known end time ("must arrive by 2:15, allow 40 minutes to travel")
- Checking whether an overnight task or shift crosses midnight into the next calendar day
Precision note
The result assumes a plain 24-hour clock with no time-zone changes or daylight-saving transitions in between the start and end times. If your calculation spans a DST switch or a time-zone boundary, add or subtract the relevant offset by hand.