I have a table with a column, Duration
that has value in seconds.
In Visual Studio / SSRS 2016
I want to display it in HH:MM:SS
format.
I have tried to use the following expressions
=Format(DateAdd("s", Fields!Duration.Value, "00:00:00"), "HH:mm:ss")
But it didn't seem to work correctly, for example, 1800s
will be displayed as 01:38:00
Can anybody see the problem?
Thanks!