Search code examples
matrixreporting-servicesssrs-2008rdlc

SSRS - Row Total for Particular Column Value in matrix


In SSRS,I'd like to add a column that shows the total count of all Late, Annual Leave & Sick Leave data for each individual row.

Currently, I'm just working on Late column & getting error on report like this. enter image description here

by using following setting.. enter image description here

this stack-overflow Solution isn't working as well

ThankYou...


Solution

  • I think your issue related to Count field. It is possible that for some reason it is returning strings, hence SUM function cannot sum its values.

    Try:

    =SUM(IIF(Fields!Activity.Value="Late",CINT(Fields!Count.Value),0),‌​"EnrollId")
    

    Let me know if this helps.