I have a report in SSRS 2008 that retrieves data from a table with a TotalTime column, which is an Integer value in seconds.
To display as time, I use this in an expression:
=Format(DateAdd("s", Fields!TotalTime.Value, "00:00:00"), "HH:mm:ss")
(got it from here: Display the number of seconds in HH: MM: SS format in SSRS 2008 )
Now, when the value goes beyond 24 hours, it looks like a โmoduleโ. I mean this: if the value is 29 hours, instead of displaying 29:00:00 it will display 05:00:00. If a value of 51 hours will be displayed 03:00:00 (issued 48 hours).
How to solve this?
Thanks!
reporting-services ssrs-2008
Amarundo
source share