Quote:
Originally Posted by Sekerob
I've been unable to derive where 255611462399 seconds might have been coming from.
|
Doubtless it's in your data - Excel wouldn't just create it out of thin air..
Here's some simplified formulae:
Code:
=TEXT(INT(A1/(86400*365)),"00 ")&TEXT(MOD(INT(A1/86400),365),"00 ")&TEXT(MOD(A1,86400)/86400,"hh:mm:ss")
and, for greater precision:
Code:
=TEXT(INT(A1/(86400*365.2425)),"00 ")&TEXT(MOD(INT(A1/86400),365.2425),"00 ")&TEXT(MOD(A1,86400)/86400,"hh:mm:ss")