G Guest Aug 26, 2005 #2 Assume the cell with 536 in it is A1: To get minutes: =(A1-MOD(A1,60))/60 To get seconds: =MOD(A1,60)
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 Aug 26, 2005 #3 =G1/24/60/60 and format as time -- HTH RP (remove nothere from the email address if mailing direct)
B Bob Phillips Aug 26, 2005 #4 or even =INT(G1/60)&" minutes "&MOD(G1,INT(G1/60)*60)&" seconds" -- HTH RP (remove nothere from the email address if mailing direct)
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 Aug 26, 2005 #5 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)
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 Aug 26, 2005 #6 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) Click to expand...
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) Click to expand...