What is the Decimal Hours to HH:MM Calculator?
This tool converts a time expressed as a decimal number of hours (for example 2.75 hours) into the familiar hours-and-minutes format (2h 45m, or 02:45). Decimal hours are common in payroll, timesheets, billing software and spreadsheets, but humans usually think in hours and minutes. This converter bridges the two formats instantly.
How to use it
Enter your decimal hours value into the input box and view the result. For instance, type 1.5 and the calculator returns 1 hour and 30 minutes. You can use any positive decimal, including small fractions like 0.25 (15 minutes).
The formula explained
The conversion uses two steps. First, the whole hours are taken as the floor of the decimal value: \(h = \lfloor d \rfloor\). Then the leftover fraction is multiplied by 60 and rounded to the nearest minute: \(m = \operatorname{round}((d - h) \times 60)\). If rounding pushes the minutes to 60, one hour is added and the minutes reset to 0.
$$\begin{gathered} \text{HH:MM} = HH : MM \\[1.5em] \text{where}\quad \left\{ \begin{aligned} HH &= \left\lfloor \text{Decimal Hours} \right\rfloor \\ MM &= \operatorname{round}\!\left(\left(\text{Decimal Hours} - HH\right) \times 60\right) \end{aligned} \right. \end{gathered}$$
Worked example
Suppose you logged 3.4 decimal hours. The whole part is \(h = 3\). The remainder is 0.4, and \(0.4 \times 60 = 24\), so \(m = 24\). The result is 3 hours and 24 minutes (03:24), or 204 total minutes.
FAQ
What is 0.5 hours in minutes? 0.5 hours equals 30 minutes (\(0.5 \times 60\)).
How do I convert 7.25 hours? 7.25 hours is 7 hours and 15 minutes, since \(0.25 \times 60 = 15\).
Why might the minutes round? Decimals such as 1.999 hours produce 59.94 minutes, which rounds to 60 and carries over to 2h 00m to keep the result clean.