Formula Question h:mm

mayoung

Active Member
Joined
Mar 26, 2014
Messages
257
Office Version
  1. 365
Platform
  1. Windows
  2. Mobile
Please Help:
In cell C8 is the number 385 which is total minutes per day. I am trying to convert 385 to total hours and minutes in C9 which should come out to
6 hours and 42 minutes. I am using the formula =convert(C8,”mn”,”hr”).
I have cell C9 Custom formatted as h:mm.
The answer in C9 comes up as 0:06

What am I doing wrong? I want to show hours and minutes?
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Shouldn't 385 minutes convert to 6 hours and 25 minutes?

You have two choices depending on if you want a real time value or text.

Real: =C8/1440 and format the cell [h]:mm

Text: =TEXT(C8/1440,"[h]:mm")
 
Upvote 0
"mn" first should be correct
support.microsoft.com said:
CONVERT(number,from_unit,to_unit)

but when i use it i get 10:00 for some reason instead of 0:06

excelhelp4.jpg


in any case i dont think using CONVERT will be able to give you hours and minutes
you can try use
=QUOTIENT(C8,60)&":"&MOD(C8,60)
which should give you 6:25
 
Upvote 0
Shouldn't 385 minutes convert to 6 hours and 25 minutes?

You have two choices depending on if you want a real time value or text.

Real: =C8/1440 and format the cell [h]:mm

Text: =TEXT(C8/1440,"[h]:mm")

Rick,

I have tried both formulas and both return as 0.00?

Cell C8 is formatted as minutes [m] does this matter?
 
Upvote 0
"mn" first should be correct


but when i use it i get 10:00 for some reason instead of 0:06

View attachment 20634

in any case i dont think using CONVERT will be able to give you hours and minutes
you can try use
=QUOTIENT(C8,60)&":"&MOD(C8,60)
which should give you 6:25
Thank You for also replying but when I use your formula I get an error There’s a problem with this formula?
 
Upvote 0

Forum statistics

Threads
1,215,416
Messages
6,124,774
Members
449,187
Latest member
hermansoa

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top