The Add Time Calculator finds the exact clock time that results from adding hours and minutes to a starting time. Handles AM/PM conversion, midnight crossovers, and 24-hour format — perfect for scheduling shifts, planning cook times, and any task requiring time addition.
—
—
0
days
150
min
—
—
0
days
150
min
The calculator for adding time answers a question distinct from duration calculation: given a starting clock time, what time will it be after a specified number of hours and minutes have elapsed? This is the essential tool for end-time planning — when something starts at 2:45 PM and takes 3 hours 20 minutes, this calculator tells you it ends at 6:05 PM without manual clock arithmetic.
Two related but distinct problems appear in time arithmetic:
This calculator solves the second problem. Enter a start time and a duration in hours and minutes; get the exact end time in both 12-hour (AM/PM) and 24-hour formats. The subtract time calculator handles the reverse: finding when something must start to finish by a given deadline. The hours calculator measures the duration between two clock times.
The most common source of error in manual time addition is the midnight rollover. Adding 5 hours to 10:00 PM gives 3:00 AM the next day — not 15:00. This calculator automatically handles:
Use this online calculator for shift planning, cooking timers, meeting scheduling, and any task where the end time matters more than the duration itself.
Time addition appears across everyday and professional contexts:
The hours between two times calculator and time arithmetic calculators category provide the complete toolkit for clock-based time calculations.
This calculator returns results in both formats. The 24-hour (military) format eliminates AM/PM ambiguity — 14:30 is unambiguously mid-afternoon regardless of context. The 12-hour format with explicit AM/PM suffixes is preferred in everyday communication in the US, UK, and Australia. Aviation, military, medical, and international scheduling almost universally use 24-hour time to avoid costly errors from AM/PM confusion. When communicating end times across time zones or in professional settings, always specify AM/PM explicitly or use 24-hour notation.
The starting time and the hours-and-minutes addition are all converted to total minutes, then combined:
base_minutes = base_hours x 60 + base_minutes_part
add_total_minutes = add_hours x 60 + add_minutes
total_minutes = base_minutes + add_total_minutes
days_added = floor(total_minutes / 1440)
time_of_day = total_minutes mod 1440
result_hours = floor(time_of_day / 60) | result_minutes = time_of_day mod 60
The 12-hour conversion: if result_hours == 0, show 12; if result_hours > 12, subtract 12. AM/PM: if result_hours < 12, AM; otherwise PM.
The result_time (24-hour format) and result_time_12h (AM/PM format) give the clock time of completion. The days_added field tells you how many calendar days beyond the start date the result falls — 0 means same day, 1 means the next day, 2 means two days later. This is critical for multi-day processes. The total_minutes_added confirms the exact time amount added, useful for verification.
Inputs
Results
A meeting starting at 10:30 AM that runs for 1 hour 45 minutes ends at 12:15 PM — same day.
Inputs
Results
A medication taken at 10:00 PM with an 8-hour interval is next due at 6:00 AM the following day (days_added: 1).
It shows how many times midnight is crossed when adding the specified hours and minutes to the start time. 0 means the result is on the same calendar day. 1 means the next calendar day. 2 means two days later. This is essential for scheduling activities that span days.
Yes. You can add up to 999 hours. The days_added output will tell you how many calendar days later the result falls. For example, adding 25 hours to 10:00 gives 11:00 the next day (days_added = 1) and 25 hours = 1 day 1 hour, so it is 1 day later at 11:00.
This calculator only adds. For subtracting time from a clock time (e.g., finding what time it was 3 hours before 14:30), convert the subtraction to addition of the complement: 24h - 3h = 21h addition, then take the result mod 24. Or use the Hours Between Two Times calculator in reverse by setting the end time and working backward.
Different contexts prefer different formats. Medical, military, and international scheduling uses 24-hour format. Personal and consumer scheduling often uses 12-hour AM/PM format. Showing both eliminates any need for manual conversion and reduces the risk of AM/PM errors.
Yes. Enter the time of the first dose and the dosing interval (e.g., every 8 hours = 8 hours, 0 minutes). The result is the time of the next dose. Repeat the calculation for subsequent doses. Always verify medication schedules with a pharmacist or physician for safety-critical medications.
If the result lands exactly on 00:00, the result_time shows 00:00 and result_time_12h shows 12:00 AM (midnight). days_added will be at least 1 since midnight represents the start of a new calendar day.
Yes. Enter the shift start time and shift duration (hours and minutes). The result is the shift end time. If days_added shows 1, the shift ends the next calendar day — important for night shift workers who need to know their end time date.
The add_minutes field accepts up to 999 minutes (not limited to 59). This allows you to add, say, 150 minutes (2.5 hours) by entering 0 hours and 150 minutes, without needing to pre-convert to hours and minutes. The calculator handles large minute values correctly.
Calculate the first dose time, then use that result as the new base_time for the next dose, adding the same interval each time. For a regular dosing schedule (e.g., every 6 hours starting at 08:00), the times are 08:00, 14:00, 20:00, and 02:00 (next day). Calculate each step sequentially using this tool.
Absolutely. Enter when you start cooking and add the cooking duration to find when the dish will be ready. For multi-step recipes, chain calculations: find when step 1 ends (which is when step 2 starts), then add step 2's duration, and so on, to map out the complete cooking timeline.
How helpful was this calculator?
5.0/5 (1 rating)
Years Between Dates Calculator
Date Difference & Duration Calculators
Business Days Calculator
Business Day & Deadline Calculators
Working Days Calculator
Business Day & Deadline Calculators
Ideal Gas Law Calculator
Atomic & Molecular Physics Calculators
Radioactive Decay Calculator
Nuclear & Particle Physics Calculators