Reputation: 179
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.
this stack-overflow Solution isn't working as well
ThankYou...
Upvotes: 0
Views: 1591
Reputation: 14108
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.
Upvotes: 1