I have Developed a new SSRS report. I added a new tablix in it and in that tablix added two columns called "Total Incidents logged" and "Total Security Incidents logged".I gave row visibility and mention the following expression. =iif(Fields!SecurtiyIncidents.Value = 0,true,false)
So i hide those rows in which values of security Incidents contains 0. But the problem is, in total column of Total Incidents logged, it contains the hide values also. I googled and found only those answers which contains only one Column and people gave row visibility. But in my case there are 2 columns.
For better understanding, i have added images. In first image, the normal table is there with total
in second picture, given row filtration on Security Incidents Logged, i.e =iif(Fields!SecurtiyIncidents.Value = 0,true,false)(So i hide those rows in which values of security Incidents contains 0) but if you see total of Incidents logged, it not changed. :(
Could anyone please help me out?