Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi , I have a '[Difference Seconds]' field that totals to :125040
If I use the following expression to try and convert this to hh:mm:ss :
=sum(Time(Time#([Difference Seconds],'ss'),'hh:mm:ss'))
the output is 10:44:00. The actual hh:mm that should be displayed is around 34 hours. Can anyone help to get the correct output?
Thanks,
Tom
Use interval() and interval#() instead of Time() / Time#().
=Interval#(sum([Difference Seconds]),'ss'),'hh:mm:ss')
=Interval(125040/(3600*24),'hh:mm:ss')
=Text(Div(125040,3600)) & ':' & Text(Div(125040 - Div(125040,3600) * 3600 , 60))