How this instrument works
Clock time runs in base 60 — 60 seconds to a minute, 60 minutes to an hour — but payroll, invoicing, and billing systems almost universally expect base-10 decimal hours instead. That mismatch causes a specific, common error: someone works 3 hours and 40 minutes and types "3.40" directly into a timesheet's decimal-hours field, when the correct decimal figure is actually 3.6667, because 40 minutes is 40/60 of an hour, not 40/100.
This calculator converts the clock-time figure correctly: decimal hours equals whole hours plus minutes divided by 60 plus seconds divided by 3600. The same duration can also be expressed as decimal minutes (hours converted to minutes, plus the minutes, plus seconds divided by 60) or decimal seconds (everything converted down to whole seconds) — three different denominators describing the exact same span of time.
It shows up constantly outside payroll too: hourly consultants and freelancers invoicing in tenths of an hour, aviation and maritime logs that record flight or watch time in decimal hours rather than clock format, and any spreadsheet formula that needs a plain number to do arithmetic on rather than a formatted time value.
- Enter the duration's hours.
- Enter the minutes (0-59).
- Enter the seconds (0-59).
- Read the duration as decimal hours, decimal minutes, and decimal seconds.
Worked example — a 3-hour-40-minute consulting session
A consulting session runs 3 hours and 40 minutes (0 seconds): decimal hours = 3 + 40÷60 + 0 = 3 + 0.6667 = 3.6667 exactly — not 3.40, which is the common mistake of treating minutes as if they were already a decimal fraction out of 100.
The same session in decimal minutes: 3×60 + 40 + 0 = 220.00 decimal minutes. In decimal seconds: 3×3600 + 40×60 + 0 = 13,200.00 decimal seconds. All three numbers — 3.6667, 220, and 13,200 — describe the exact same 3-hour-40-minute session, just scaled to a different base unit.
Questions
Why isn't 40 minutes just 0.40 on a timesheet?
Because an hour holds 60 minutes, not 100 — 40 minutes is 40/60 of an hour, which works out to approximately 0.6667, not 0.40. Typing 0.40 directly treats minutes as if the clock ran in base 10, which understates the actual time by roughly 16 minutes for every hour recorded this way, a mistake that quietly compounds across a full timesheet.
How do I convert decimal hours back into hours and minutes?
Take the whole-number part as hours, then multiply the decimal remainder by 60 to get minutes — 3.6667 hours, for example, is 3 whole hours plus 0.6667 × 60 ≈ 40 minutes, recovering the original 3 hours 40 minutes. This site's Count Hours calculator handles that reverse direction directly from a list of minute entries.
Do all payroll and billing systems use decimal hours?
Most professional payroll, timesheet, and invoicing software does expect decimal hours for time-entry fields, since it simplifies pay-rate multiplication (hourly rate × decimal hours = pay, with no separate handling needed for the minutes portion), but always check your specific system's expected format before entering figures — a few systems do accept clock-format H:MM entries directly and convert internally.
Should I round decimal hours to two decimal places for an invoice?
Many invoicing conventions round to two decimal places (3.6667 becomes 3.67) since that's precise enough for billing purposes and matches how currency itself is typically displayed, but check your specific client or system's convention — some billing systems round to the nearest tenth or quarter-hour instead (3.6667 rounding to 3.75, for instance, under quarter-hour rounding), which can shift the billed amount more than a simple two-decimal round would.
What's the difference between decimal time and 24-hour clock time?
24-hour clock time (like 15:40) still describes a specific moment or duration using base-60 minutes and seconds, just without an AM/PM label. Decimal time converts that same duration into a pure base-10 number (like 3.6667 hours) with no minutes or seconds units at all — the two represent identical information, formatted for different purposes: one for reading on a clock, one for doing arithmetic in a spreadsheet or payroll system.