Convert Minutes to Decimal Hours for Payroll
Timesheets are filled in as hours and minutes. Payroll systems want decimal hours. The conversion is one division — minutes ÷ 60 — but doing it forty times for a weekly timesheet is where mistakes creep in, and the mistakes cost money.
The error that shows up most often is reading the decimal as minutes: writing 8.45 for 8 hours 45 minutes. The correct value is 8.75. Over a fortnight of shifts that is real underpayment, and it is easy to miss because 8.45 looks plausible.
Minutes to Decimal Chart
| Minutes | Decimal | Exact |
|---|---|---|
| 5 min | 0.08 | 0.0833 |
| 10 min | 0.17 | 0.1667 |
| 15 min | 0.25 | 0.25 |
| 20 min | 0.33 | 0.3333 |
| 25 min | 0.42 | 0.4167 |
| 30 min | 0.50 | 0.5 |
| 35 min | 0.58 | 0.5833 |
| 40 min | 0.67 | 0.6667 |
| 45 min | 0.75 | 0.75 |
| 50 min | 0.83 | 0.8333 |
| 55 min | 0.92 | 0.9167 |
| 60 min | 1.00 | 1 |
The quarter hours are worth committing to memory: 15 = 0.25, 30 = 0.5, 45 = 0.75. Those three cover most shift patterns. Everything else is minutes ÷ 60.
Converting Minutes to Decimal in Excel
Which formula you need depends on how the cell is stored, and getting this wrong is the usual reason a spreadsheet returns something absurd:
- Minutes as a plain number (a cell containing
45) →=A1/60 - A real time value (a cell containing
7:45) →=A1*24, then format the result as a number, not as a time. Excel stores times as a fraction of a day, so 7:45 is really 0.3229 — multiplying by 24 converts it to hours. - Hours and minutes in separate columns →
=A1+B1/60
If a formula returns something like 0.32 when you expected 7.75,
the cell is a time value and you used the plain-number formula. Switch to
=A1*24.
Rounding and How Much It Matters
Some minutes do not divide evenly into an hour. Ten minutes is 0.1666… recurring, and twenty is 0.3333…. Two decimal places is the payroll standard and loses under a second per entry, which no system will care about — but the converter above shows the exact value as well, in case yours accepts more precision.
Separately, some employers round clock times to the nearest quarter hour before converting. US federal rules permit that provided the rounding is neutral over time rather than consistently favouring the employer. That is a policy question for your workplace, not a maths one — this tool converts whatever minutes you give it.
Not Looking for Time?
"Minutes to decimal" also describes converting geographic coordinates — degrees, minutes and seconds into decimal degrees. That is a different calculation (degrees + minutes/60 + seconds/3600) and this page will give you the wrong answer for it. This converter is for time: timesheets, payroll, and billable hours.