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
Post a Comment