• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

How to convert value in time?

bhasoriya

Member
There is figure 245, it means 4 hours and 5 minutes. if i am dividing the 245 with 60 then result is 4.08. But actual i want 4:05. Help me please. Which formula or format can do.


Thanks
 
Hi bhasoriya,


you can try:


Code:
=TEXT(TIME(245/60,QUOTIENT(245,60),0),"HH:MM")


Faseeh
 
Hello Faseeh,


There is something wrong, the result would be 4:05, It is 4:04..

Would also like to inform you, 245 is contained in one cell and there are too many values i want to convert in time, So it would be good for me if i can indicate the cell in formula.


Thanks Faseeh:)
 
Hi bhasoriya,


This file shows this message:


Code:
Download permission denied by uploader. (0b67c2f5)


Regards,
 
I would do this:

=TEXT(TIME(INT(I5/60),I5-INT(I5/60)*60,0),"HH:MM")

Where I5 is the 245
 
Hi Bhasoriya..


as Haseeb already did the job.. still for future reference..

Excel also has a great & rare used Formula..


=CONVERT(G5,"mn","day")


Play with it..


Regards,

Deb
 
Back
Top