Hello ,
I currently have the amount of time in SECONDS and am looking for a way to convert it to HH:MM:SS. Either Excel or Access would work. Any ideas?
Hi - try this
if time in seconds is in A1 then
=INT(A1/3600)&":"&INT((A1-(INT(A1/3600)*3600))/60)&":"&A1-((INT(A1/3600)*3600)+(INT((A1-(INT(A1/3600)*3600))/60)*60))
will give you hours mins and secs
HTH
Geoff
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.