converting seconds in hh:mm:ss

X

Xavie

Hi,

I need to know how to change 84587 seconds in hh:mm:ss.
I try 84587/60 and I got 1409.7833
What's the right thing that I must do ??
 
C

chillihawk

It's a good question this one. Presume you have the number of seconds
to convert in cell N13 then put this formula in cell N14

=INT(N13/3600)&":"&INT(((N13/3600)-INT(N13/3600))*60)&":"&INT((((N13/3600)-INT(N13/3600))*60-INT(((N13/3600)-INT(N13/3600))*60))*60)

I imagine this could be done more succinctly, I'd be interested to see
other answers.

HTH
 
X

Xavie

Thanks, it works.

Do you know what formula can I use to multiply these minute to amount ??
I have 1:54:30*2.18

What's the right way to do it ?
 
Top