Convert decimal days to hours and minutes

C

Christopher

I need a function to convert decimal DAYS to display "X hr(s), X min(s)".

I currently have a function that converts decimal days to hours, as such:
=ROUNDDOWN((A1)*24,1)&" hours"
so with a given input of, for example:
..2 = 4.8 hours
..5 = 12 hours, etc.

I would like to have a function that's a bit more human readable, as 4.8
hours doesn't mean 4hr 48min to most people.
 
J

Jacob Skaria

Hi Chris

Try the below
=INT(A1*24)&" hrs " & ROUND(MOD(A1*24,1)*60,) & " mins"

If this post helps click Yes
 
J

Jacob Skaria

Chris, If you dont want a descriptive form and only want to display the man
days in hh:mm:ss format then you dont need a formula. Just right click cell
A1 itself; FormatCells>Custom>Type: [h]:mm:ss

If this post helps click Yes
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top