How this instrument works
A duration written as '1h 30m 45s' is easy for a person to read but awkward for a computer or a spreadsheet formula to add up — you can't sum a column of mixed-format times without first collapsing each one to a single unit. This calculator does that collapsing: it takes hours, minutes and seconds as separate fields and folds them into one decimal number of minutes, the unit most billing, payroll and pace-tracking tools expect as input.
The conversion is plain arithmetic, not a lookup or approximation: an hour contributes 60 minutes, a minute contributes 1, and a second contributes 1/60th of a minute, so the three fields are simply multiplied by their respective weights and added together. There's no rounding of a clock time or time zone involved — this is duration arithmetic, the length of a span, not a position on a clock face.
The reverse direction — decimal minutes back into hours, minutes and seconds — is the same arithmetic run backward: divide by 60 for whole hours, take the remainder as minutes, and any leftover fraction of a minute converts back to seconds by multiplying by 60. Knowing both directions is useful any time one system reports duration one way (say, '135 minutes' on an invoice) and you need to read it the other (2 hours 15 minutes) to sanity-check it.
- Enter Hours, Minutes and Seconds for the duration you're converting — all three are optional in the sense that any of them can be zero.
- Read Total (decimal minutes) for the single-number result.
- For a duration already given only in seconds (say, a lap time of 245 seconds), leave Hours and Minutes at 0 and enter the full value in Seconds — the calculator still folds it down correctly.
- Paste the decimal minutes value directly into any spreadsheet formula or billing field that expects duration as a single number rather than a mixed hours:minutes:seconds string.
Worked example — a 1h 30m 45s task logged for billing
A contractor's time-tracking app logs a task as 1 hour, 30 minutes and 45 seconds, but the invoicing spreadsheet only accepts a single decimal-minutes column. Total minutes = (1 × 60) + 30 + (45 ÷ 60) = 60 + 30 + 0.75 = 90.75 minutes.
That 90.75 is what goes in the spreadsheet cell — and it round-trips cleanly: 90.75 minutes is 90 whole minutes (1 hour 30 minutes) plus 0.75 of a minute, and 0.75 × 60 seconds gives back the original 45 seconds, confirming nothing was lost in the conversion.
Questions
Why convert to decimal minutes instead of just using hours:minutes:seconds?
Spreadsheets, billing systems and most programming environments can add, average and sort a plain decimal number far more reliably than a colon-separated time string, which is easy to misparse (is '1:30' one hour thirty minutes, or one minute thirty seconds?). Converting once to decimal minutes up front removes that ambiguity and lets you sum a whole column of durations with a normal SUM formula.
How do I convert 90.75 minutes back into hours, minutes and seconds?
Divide by 60 to get whole hours (90.75 ÷ 60 = 1, remainder 30.75 minutes), keep the whole-number remainder as minutes (30), and convert the leftover fraction of a minute to seconds by multiplying by 60 (0.75 × 60 = 45 seconds) — giving back 1h 30m 45s exactly.
Does this calculator handle a duration longer than 24 hours?
Yes — Hours has no upper limit here, since this is a duration (a length of time) rather than a clock time, so 40 hours of accumulated overtime or a 72-hour event both convert correctly to their total minute count.
What if I only know a duration in seconds, like a 245-second lap time?
Leave Hours and Minutes at 0 and enter 245 in Seconds — the formula still divides by 60 correctly, giving 4.0833... total minutes, which is exactly the same arithmetic the calculator would use if that duration had been logged as 4 minutes 5 seconds instead.
Is this the same as a clock-time calculation, like minutes between two times of day?
No — this tool converts a duration (a span of time with no start or end point, like '45 minutes of work') into a single number. Working out the gap between two clock times, like 9:00 AM and 9:45 AM, is a related but different calculation, since it has to handle a start point, an end point, and the possibility of crossing midnight.