Decimal Hours to Minutes Calculator
Convert a decimal hour format back into standard hours and total minutes.
Enter your values and click Calculate
Timesheets, billing software, and payroll systems often store time in decimal format — 1.5 hours, 7.25 hours, 2.667 hours — rather than the familiar hours-and-minutes display. Converting that decimal back to a human-readable format helps you verify hours worked, price a project correctly, or schedule tasks without mental arithmetic. A value like 3.75 hours is not immediately obvious until you know it means 3 hours and 45 minutes. This calculator handles the conversion instantly, showing both the total minutes and the standard hours-and-minutes breakdown. It is useful for freelancers reviewing logged hours, payroll administrators processing timesheets, and anyone importing time data from apps that export in decimal format.
How It Works
Total minutes = decimal hours × 60, since there are exactly 60 minutes in one hour. To produce the hours-and-minutes breakdown, the whole-number portion of the decimal is taken as the hour count using Math.floor(). The fractional part — decimal hours minus the whole hours — is multiplied by 60 and rounded to the nearest whole minute. For example, 2.75 hours: total minutes = 2.75 × 60 = 165; whole hours = 2; fractional part = 0.75; remaining minutes = 0.75 × 60 = 45. So the result is 165 total minutes, or 2 hours and 45 minutes. Rounding is applied to the minutes display only; the raw total minutes retains two decimal places for precision.