Hi Ganesh
Yes of course its possible, but not with builtin functions as far as I know :-(
But there are the DIV and MOD script functions that will do the trick:
:SET &SECS# = 13657
!calc minutes and rest of seconds
:SET &MINS# = DIV(&SECS#,60)
:SET &SECS# = MOD(&SECS#,60)
!calc hours and rest of minutes
:SET &HRS# = DIV(&MINS#,60)
:SET &MINS# = MOD(&MINS#,60)
!beautify output
:SET &HRS# = FORMAT(&HRS#,"00")
:SET &MINS# = FORMAT(&MINS#,"00")
:SET &SECS# = FORMAT(&SECS#,"00")
:PRINT "Time elapsed: &HRS#:&MINS#:&SECS#"
Report:
2017-11-21 08:55:09 - U00020408 Time elapsed: 04:48:37