how do i convert 536 seconds to 8minutes 56seconds

D

David Billigmeier

Assume the cell with 536 in it is A1:

To get minutes: =(A1-MOD(A1,60))/60
To get seconds: =MOD(A1,60)
 
B

Bob Phillips

=G1/24/60/60

and format as time

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
B

Bob Phillips

or even

=INT(G1/60)&" minutes "&MOD(G1,INT(G1/60)*60)&" seconds"

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
P

Peo Sjoblom

Or even =G1/86400 and format as either mm:ss or mm "minutes" ss "seconds" if
you want to be fancy <bg>

--
Regards,

Peo Sjoblom

(No private emails please)
 
B

Bob Phillips

it never hurts to be fancy <ebg>

Bob


Peo Sjoblom said:
Or even =G1/86400 and format as either mm:ss or mm "minutes" ss "seconds" if
you want to be fancy <bg>

--
Regards,

Peo Sjoblom

(No private emails please)
 
Top