Change Minutes to Hours in Excel

“change minutes to hours in excel” comes up constantly, so this page leads with the exact answer, gives you a tool to try it on your own numbers, and only then explains the detail. Everything works in Excel on Windows and Mac and maps almost one-to-one to Google Sheets. Copy the answer above and get back to work, or read on to turn a one-off fix into something you never have to look up again.

Exact answer

In Excel: multiply the time by 24 and format the result as a plain number — =A2*24 turns 7:30 into 7.5.

On this page7
ƒxHours & Duration CalculatorLive
Duration
8:00

8.00 decimal hours

=(B2-A2+(B2<A2))*24-C2/60
=A2*24
Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

What this does

A time in Excel is a fraction of a day, so 7:30 is stored as 0.3125. Multiplying by 24 converts it into hours, by 1440 into minutes, and by 86400 into seconds. The step people forget is the second one: the result cell inherits the source's time format, so 7.5 is displayed back as 12:00 until you set the cell to General or Number. Going the other way — decimal hours into a time — divide by 24 and format as time, or use =TIME(hours, minutes, 0) if the parts are in separate cells. Converting minutes to hours is the same operation viewed differently: if A2 holds a plain NUMBER of minutes rather than a time value, =A2/60 gives decimal hours, and =A2/1440 gives a time value you can format as h:mm. Whether to divide by 60 or by 1440 depends entirely on whether the cell holds a number or a time, which is why checking the alignment first is worth the second it takes. The same idea underpins a lot of everyday Excel work, so the few minutes spent getting it right here pay back across every sheet you build afterwards. Treat it as a pattern, not a one-off, and it stops being something you look up and starts being something you reach for. Treat “change minutes to hours in excel” as a small repeatable workflow rather than a one-off click you hope to remember next time. Use a small test block before the live file, so any surprise in the affected cells shows up while it is still harmless. When a formula is involved, keep the inputs labelled beside it, reference cells instead of typing values, and apply number formatting only after the result checks out. That turns a workflow that saves repeating the same clicks every week into a method you can reuse, explain, and defend when the workbook leaves your screen.

A worked example

B2 holds the duration 7:30. =B2*24 formatted as Number with one decimal shows 7.5, ready to multiply by an hourly rate: =B2*24*C2 with a rate of 18.50 gives 138.75. In reverse, 7.5 in D2 back to a time: =D2/24 formatted as h:mm shows 7:30. And 135 plain minutes in E2: =E2/60 gives 2.25 hours, =E2/1440 formatted as h:mm gives 2:15. Every hourly-rate calculation needs the decimal form, and the ×24 is only half of it — the number format is what makes the answer readable. A practical tip before you scale it up: build it once on a small block of test data, confirm the number against the tool on this page, and only then point it at your real sheet. That one habit catches almost every mistake while it is still cheap to fix, long before a wrong figure reaches a report or a colleague.

In Google Sheets

Google Sheets handles this almost identically to Excel. The formula syntax above is the same, and the menu lives under a slightly different label rather than a ribbon tab. Use the platform toggle at the top of the page to switch every keyboard shortcut between Windows and Mac, and expect at most cosmetic differences in naming. Nothing on this page is behind a login: the tool runs entirely in your browser, the formula is shown in full with one-click copy, and the steps work the same on Windows and Mac. That is the whole promise here — the exact answer, a way to prove it on your own numbers, and just enough context to make it stick. If you take one thing from this page on “change minutes to hours in excel”, make it the habit rather than the keystrokes: set the problem up with labelled inputs, reference those cells, and let Excel do the recomputing. Bookmark the page for the syntax, but do the example once in a blank sheet and check it against the tool above — five minutes of hands-on practice fixes the method in memory far better than re-reading, and it surfaces the small snags while they are still harmless. After that the technique is genuinely yours: faster than searching for it again, and reliable enough to drop into work that other people depend on.

Common mistakes

  • Forgetting to change the number format, so the correct answer is displayed back as a time.
  • Multiplying a text "7:30" by 24 and getting #VALUE! — convert it to a real time first.
  • Dividing by 60 when the cell holds a time value rather than a count of minutes.
  • Rounding each row to two decimals and then totalling, which drifts from the total of the unrounded values.
  • Paying against the raw time value, which is a fraction of a day and roughly 24 times too small.

Frequently asked questions

How do I convert time to a decimal in Excel?

Multiply by 24 and format the result as a number: =A2*24 turns 7:30 into 7.5.

Why does my result still look like a time?

The result cell kept the time format. Set it to General or Number via Ctrl+1.

How do I convert minutes to hours?

If the cell holds a plain number of minutes, =A2/60. If it holds a time value, =A2*24.

How do I convert a decimal back to a time?

Divide by 24 and format the cell as h:mm — =D2/24 turns 7.5 back into 7:30.

Other ways people ask this

This is also commonly searched as “how to change minutes to hours in excel” and “excel change hours to minutes”. They describe the identical operation, so you are in the right place no matter how you phrased it.

Why do people search for this in so many different ways?

Because the same task has many names. “how to change minutes to hours in excel”, “excel change hours to minutes” all point at the one operation explained on this page, which is why they all lead here.