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)
convert second to time format as (01:23:10)
Hello,
You can use the following expression, for example:
Thank you.
You can use the following expression, for example:
Code: Select all
{new DateTime().AddSeconds(43020).ToString("hh:mm:ss")}