Dec 7, 2003 #1 Drepso Technical User Jul 22, 2002 50 AU Hi I have a table which stores time intervals in seconds. I would like to format these to hh:mm:ss. Can anyone help me with this? Any help would be greatly appreciated. Thanks in Advance. Cheers
Hi I have a table which stores time intervals in seconds. I would like to format these to hh:mm:ss. Can anyone help me with this? Any help would be greatly appreciated. Thanks in Advance. Cheers
Dec 8, 2003 #2 TonyJollans Programmer Dec 18, 2002 7,186 GB Hi Drepso, If the total is always less than 24 hours, you could convert it to a fraction of a day and use the built in format option .. Code: Format([YourSeconds] / 86400, "hh:mm:ss") Enjoy, Tony Upvote 0 Downvote
Hi Drepso, If the total is always less than 24 hours, you could convert it to a fraction of a day and use the built in format option .. Code: Format([YourSeconds] / 86400, "hh:mm:ss") Enjoy, Tony