Article — Hours and Minutes Calculator
Hours and Minutes Calculator: Convert, Add, and Subtract
One hour contains 60 minutes. To convert minutes to decimal hours, divide by 60. To convert decimal hours to HH:MM, take the whole-number part as hours and multiply the remainder by 60 for minutes.
Hours and minutes look like they should be simple, but timesheet errors are common because the brain wants to treat HH:MM as a decimal number. It is not. The minutes column is base-60, the hours column is base-10, and mixing the two without converting first leads to overpayment, underpayment, and angry HR emails. This calculator handles the conversion so you can move cleanly between the two systems.
Convert hours and minutes to decimal
The Convert tab is bidirectional. Type a value in either side and the other updates. The math is one operation in each direction.
HH:MM → decimal = H + (M / 60)decimal → HH:MM H = floor(d), M = (d − H) × 6015 min = 0.2530 min = 0.5045 min = 0.75Payroll systems almost always store hours as decimal because multiplication is easier. 7.75 hours at $20 per hour is $155. The same value written as 7:45 cannot be multiplied directly by 20 without first converting. NIST's time and frequency reference notes that decimal representations dominate in scientific and industrial timekeeping for exactly this reason.
The hours and minutes formula
The full formula handles both directions of the conversion. Going from HH:MM to decimal hours is a single division. Going from decimal hours back to HH:MM is a floor operation and a multiplication.
- Minutes to decimal = total_min / 60
- HH:MM to decimal = H + (M / 60)
- Decimal to hours = floor(decimal)
- Decimal to minutes = round((decimal − H) × 60)
- Total seconds = (H × 3600) + (M × 60)
Highly composite numbers are rare. The number 60 has 12 divisors (1, 2, 3, 4, 5, 6, 10, 12, 15, 20, 30, 60), more than any smaller positive integer. The next highly composite number is 120, then 180, then 240. Each one gets used somewhere in measurement: 60 for time, 360 for angles (six sixties), and 12 for inches per foot.
How to add hours and minutes
Adding hours and minutes by hand follows a two-step rule: sum each column, then carry any minutes above 60 into the hours column. The calculator does it for you, but the manual method is worth knowing for sanity-checking.
Example: add 2:45 and 1:30. Sum the minutes: 45 + 30 = 75. Sum the hours: 2 + 1 = 3. Carry the excess: 75 minutes = 1 hour and 15 minutes. Final answer: 3 + 1 = 4 hours, with 15 minutes left over, giving 4:15.
If you are adding more than two time values, convert all of them to decimal first, sum the decimals, then convert the total back to HH:MM at the very end. This avoids carrying minutes through multiple intermediate steps where you might lose track.
How to subtract hours and minutes
Subtraction works the same way but with borrowing instead of carrying. If the minutes you are subtracting are larger than the minutes you have, borrow 60 minutes from the hours column.
Example: 3:15 minus 1:45. You cannot subtract 45 from 15. Borrow one hour, which is 60 minutes: now you have 2:75. Subtract: 75 − 45 = 30 minutes, 2 − 1 = 1 hour. Answer: 1:30. The Subtract tab handles this borrowing automatically and shows the result in both HH:MM and decimal form.
Hours and minutes conversion table
This table covers the values most often needed for payroll, project tracking, and class scheduling. Every 15-minute increment maps to a clean fraction.
- 15 min = 0:15 = 0.25 h
- 30 min = 0:30 = 0.50 h
- 45 min = 0:45 = 0.75 h
- 1 h 15 min = 1:15 = 1.25 h
- 1 h 30 min = 1:30 = 1.50 h
- 2 h 45 min = 2:45 = 2.75 h
- 7 h 45 min = 7:45 = 7.75 h
- 8 h 30 min = 8:30 = 8.50 h
Why 60 minutes per hour?
The 60-minute hour comes from ancient Babylon, around 2000 BC. The Babylonians used a sexagesimal (base-60) number system for mathematics, astronomy, and timekeeping. When Greek and Roman scholars adopted Babylonian astronomy, they kept the base-60 system for measuring angles and time, and it has survived essentially unchanged for four thousand years.
Britannica notes that the system persisted because 60 is unusually divisible. A merchant in 1500 BC could split an hour into halves, thirds, quarters, fifths, sixths, tenths, and twelfths using simple mental arithmetic. None of those divisions produce repeating decimals. The decimal-based 100-minute hour was proposed during the French Revolution but never caught on, because it gave up that arithmetic convenience.
Common hours and minutes mistakes
The single most common error is treating HH:MM as a decimal. Writing 7:45 in a spreadsheet cell that expects 7.75 produces wrong overtime, wrong invoices, and wrong PTO balances. Convert first, then multiply.
1:30 means one hour thirty minutes (1.50 in decimal). 1.30 means 1.3 hours (1 hour 18 minutes). The notations look almost identical but represent different values. Pick one notation per spreadsheet column and never mix.
- Crossing midnight — add 24 hours to the end time before subtracting
- Rounding too early — keep four decimal places until the final step
- Missing leading zeros — 0:05 is five minutes, not five seconds
- Mixing base-60 and base-10 — never multiply 7:30 by an hourly rate
The second-most-common error is rounding too early. If you convert 22 minutes to decimal as 0.22 instead of 0.3667, you have just introduced a 67% error in that line item. Convert to four decimal places, do all the arithmetic, and round only at the end when you write the final answer back as HH:MM.
Crossing midnight breaks naive subtraction. If a shift starts at 22:00 and ends at 06:00, subtracting end from start gives negative 16 hours. The fix is to add 24 hours (1,440 minutes) to the end time first when the end is earlier than the start. After that single adjustment, the math works normally and gives the expected 8-hour result.
A subtler problem is rounding rules. Payroll departments handle the last few minutes of a shift differently depending on company policy. The U.S. Department of Labor allows employers to round time to the nearest quarter-hour as long as the rounding works out fairly over time. Common patterns are nearest-7-minute (the "seven-minute rule"), where minutes 1-7 round down to the prior quarter and minutes 8-14 round up. Without a consistent rounding policy, two timekeepers can produce two different totals from the same raw punches.