Hi all,
I'm trying to convert a column of seconds values (int64) into HH:MM:SS and am using this formula;
PadLeft(ToString(Mod([TA_SEC]/3600,3600)),2,"0")+":"+
PadLeft(ToString(Mod([TA_SEC]/60,60)),2,"0")+":"+
PadLeft(ToString(Mod([TA_SEC],60)),2,"0")
it works fine for anything up to 24 hours (86,400 seconds) but for anything that high or above it returns a null. The highest one I have is 2,604,600 (30 days, 3.5 hours).
Can anyone suggest a way to get a non-null value for all of these? If the largest one came out as 723:30:00 that would be fine.
Thanks for your help.
Best,
DHB