Add Time Calculator

Add two durations in hours and minutes and see when the combined block would finish.

Combined duration
Adjust the inputs

Your result updates live as you type.

Adding durations means carrying at sixty rather than at a hundred, which is exactly where mental arithmetic slips. 2:45 plus 3:30 is 6h 15m, not 5 hours 75 minutes and not 6.15 of anything. This calculator converts both entries to minutes, adds them, and converts back, so the carry is handled once and correctly.

The finishing time is included because a total on its own rarely answers the real question. If two tasks of 2:45 and 3:30 run back to back from 09:00, the block ends at 15:15 — a figure you would otherwise work out in a second step.

Both entries accept a plain decimal too, so 1.5 is read as one and a half hours and 90m as ninety minutes. Anything the parser cannot read is treated as zero rather than producing a nonsense total, and the result always names how many minutes went into it.

The formula

Total = (h1 × 60 + m1) + (h2 × 60 + m2)
A
First duration
B
Second duration
T
Combined total in minutes
F
Finishing clock time

How it works, step by step

  1. Enter the first duration as H:MM, or as a decimal number of hours.
  2. Enter the second duration the same way.
  3. Enter the clock time the combined block would start at.
  4. Read the total, its decimal form and the finishing time.

Worked examples

2:45 plus 3:30

In minutes that is 165 + 210 = 375, which converts back to 6h 15m or 6.25 decimal hours. Starting at 09:00, the block finishes at 15:15.

Two long tasks running past midnight

A 7:20 task and a 5:50 task total 13h 10m. Begun at 14:00 they finish at 03:10 the next day, because the sum of 790 minutes exceeds the 600 minutes left in the day.

How to read your score

0–1Under an hourThe two blocks together still fit inside an hour.
1–4A short sessionComfortably inside a morning or an afternoon.
4–8Most of a working dayThe combined block fills a half to full day.
8–—More than a working dayThe total will spill past normal hours.

Frequently asked questions

Why can I not just add the numbers as decimals?

Because 2:45 is not 2.45. The minutes are sixtieths, so 2:45 is 2.75 hours. Adding the written forms gives 6.15, while the correct total is 6.25 hours — a gap of 6 minutes.

Can I enter a decimal instead of H:MM?

Yes. A bare number is read as hours, so 3.5 means three and a half hours. Mixing the two forms in the same calculation is fine.

What happens if the block runs past midnight?

The finishing time wraps around and the extra line says so. The total duration itself is never wrapped, so a 30-hour combined block still reports as 30 hours.

Does it handle more than two durations?

Not on this page. To add a longer list of durations in one go, use the total hours calculator, which accepts a comma-separated list of any length.

Duration addition reference

Pairs of durations added correctly
FirstSecondTotalDecimal hoursTotal minutes
0:450:301h 15m1.2575
1:202:504h 10m4.17250
2:453:306h 15m6.25375
3:154:458h 00m8.00480
5:402:358h 15m8.25495
7:205:5013h 10m13.17790

Every total carries at sixty minutes, so minute columns never exceed 59.

Related calculators