reporting services - how to calculate total of the time field values in ssrs? -


i need sum of time values in reporting services.

such sum of 23:26:26 , 26:26:56

i tried following:

 > sum(fields!item.value)   

but won't work. please help!

try timespan class :

=timespan(sum(fields!item.value)) 

Comments

Popular posts from this blog

android - Inheriting from Theme.AppCompat* -

broadcastreceiver - android BOOT_COMPLETED not received if not activity intent-filter -

basic authentication with http post params android -