Page 1 of 1

convert second to time format as (01:23:10)

Posted: Fri Aug 20, 2010 5:29 am
by Vikas
Hi

I have total of 43020 second . I need to convert this in time format as (hh:mm:ss).

How i do this?

Or any other way to sum of time of the multiple rows ?

Please help me.

Thanks
Vikas

convert second to time format as (01:23:10)

Posted: Fri Aug 20, 2010 7:14 am
by Ivan
Hello,

You can use the following expression, for example:

Code: Select all

        {new DateTime().AddSeconds(43020).ToString("hh:mm:ss")}
Thank you.