Understanding the Adding Hours Calculator
This tool adds up to three time durations — each entered as whole hours and minutes — into a single total. It is the same arithmetic behind a manual timesheet: three shifts of, say, 3h45m, 2h30m, and 1h15m need to be summed into one grand total without losing track of the 60-minutes-per-hour rollover.
The formula
Every duration is first converted entirely into minutes: minutes = hours × 60 + minutes. All three durations are added together in minutes, then the grand total is converted back into a clock-style result:
- Total minutes = Σ(hoursi × 60 + minutesi) for the three entries.
- Hours part = the total minutes divided by 60, rounded down (integer division).
- Minutes part = what remains after removing whole hours (total minutes mod 60).
- Decimal hours = total minutes ÷ 60, useful for multiplying by an hourly rate.
- Days breakdown = the hours part divided by 24 (whole days), with the remaining hours and minutes shown alongside — this assumes a plain 24-hour day, not a work-day definition.
Worked example
Adding 3h45m + 2h30m + 1h15m: converted to minutes that is 225 + 150 + 75 = 450 minutes. Dividing by 60 gives 7 whole hours with 30 minutes left over, so the total is 7h 30m — equivalently 7.50 decimal hours or 450 minutes. Since 7 hours is less than 24, the days breakdown stays at 0 days, 7h 30m.