Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a column with data only in seconds for e.g. 5402s
This I want to split it as 01:30:02 i.e 1 Hour 30 Minutes 2 Seconds.
Thanks in advance!
Best Regards,
Shannoy
Hi,
Try like this
=interval(timestamp#(5402, 's'), 'hh:mm:ss')
Regards
ASHFAQ
Hi,
Try like this
=interval(timestamp#(5402, 's'), 'hh:mm:ss')
Regards
ASHFAQ
=Time(5402/24/60/60,'hh:mm:ss')
=Interval(5402/86400)