Minutes to Decimal Converter
Convert hours and minutes into decimal hours (and back) — a must for payroll managers, freelancers, and anyone calculating billable time.
Convert hours and minutes into decimal hours (and back) — a must for payroll managers, freelancers, and anyone calculating billable time.
Commonly used by payroll teams and freelancers to convert clocked time into billable decimal hours.
Convert 7 hours 40 minutes into 7.67 hours for billing systems that want decimals.
Turn tracked time into decimal hours to multiply cleanly by your hourly rate.
Convert clock-in/clock-out minutes into the decimal hours payroll software expects.
Aggregate task durations in decimal form for clean charts and totals.
Legal and consultancy work is often billed in tenths of an hour. 0.1 is six minutes, not ten — a slip that quietly inflates or shrinks every invoice.
Spreadsheets store durations as fractions of a day, so summing them can produce a date instead of an hour count. Converting to decimal hours first avoids it.
Decimal hours = Whole hours + (Minutes ÷ 60). Examples: 7h 45m = 7 + 45/60 = 7.75; 8h 30m = 8.5; 2h 15m = 2.25; 6h 20m = 6 + 20/60 ≈ 6.333; 1h 10m = 1 + 10/60 ≈ 1.167. Quick reference: 15 min = 0.25h; 20 min ≈ 0.333h; 30 min = 0.5h; 45 min = 0.75h. Always divide the minutes component by 60 — not by 100.
Separate the whole number (hours) from the decimal. Multiply the decimal portion by 60 to get minutes. Example: 8.583 hours → 8 hours + (0.583 × 60) = 8 hours 35 minutes. Another: 3.25 hours → 3 hours + (0.25 × 60) = 3 hours 15 minutes. If the minutes result isn't a whole number, round to the nearest minute. This conversion is essential for reading digital stopwatch outputs (which show decimal seconds) into clock time.
Decimal hours simplify all arithmetic. Pay = Hours × Rate: 7.75 hours × $24/hr = $186.00 (straightforward multiplication). In contrast, "7 hours 45 minutes × $24" requires converting minutes to hours first. Spreadsheet functions (SUM, AVERAGE, IF) also work naturally with decimal numbers but require special handling for time formats. Most payroll software (ADP, QuickBooks, Xero) stores and calculates in decimal hours internally, even if they display clock time to employees.
Common billing increment conventions: 6-minute increments (0.1 hour) — standard in legal billing; 15-minute increments (0.25 hour) — common in consulting and IT; 30-minute increments (0.5 hour) — simpler invoicing. Rounding rule: always round to the nearest increment, or round up (more favourable to the freelancer). Time tracking tools like Toggl, Harvest, and Clockify export in decimal hours for direct use in invoices. A 45-minute task billed at 0.1h increments rounds to 0.8h; at 0.25h increments it rounds to 0.75h.
Add the minutes column first. If minutes total 60 or more, carry over the excess to hours. Example: 2h 45m + 3h 50m + 1h 30m. Minutes: 45 + 50 + 30 = 125 min = 2h 5m. Hours: 2 + 3 + 1 + 2 (carried) = 8h. Total: 8h 5m = 8.083 decimal hours. Alternatively, convert all entries to decimal first, sum, then convert back. In Excel, enter times as h:mm format and use =SUM(A1:A5) — but format the result cell as [h]:mm to handle totals over 24 hours correctly.