time is stored as a fraction of a 24 hour day, so you need to divide the
number of seconds by the number of second in a day

60521/(60#*60#*24#)

? 60521/(60#*60#*24#)
0.700474537037037

? format(60521/(60#*60#*24#),"hh:mm:ss")
16:48:41

--
Regards,
Tom Ogilvy

"Tod" <todtown@swbell.net> wrote in message
news:185e01c4f737$5e435730$a301280a@phx.gbl...
> Here is an easy one for somebody.
>
> I have a list of seconds in duration, like this:
>
> 124
> 1256587
> 2354
> 60521
> 235325
>
> Why they chose to do it this way, (?). I want to format
> this to show in the typical h:mm:ss format.
>
> How?
>
> tod
>