formula help working with time

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

For example, I have a cell that is formatted [h]:mm and indicates 50:03 (50
hours 3 minutes) and I need to convert it to days, hours, minutes. Is there
a formula I can use? I tried dividing by 24 but my answer was 2:05 using the
[h]:mm format but if I use General or Number formating I get 0.08689.
Thanks for your assistance.
 
Hi Constance

One way
=INT(A1*24/24)&" days "&(INT(MOD(A1,24))&" hours "
&CEILING(MOD(A1,1440),1)&" minutes")
 

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

Back
Top