HI All,
I designed a Matrix report which is calling stored procedure in Dataset. SP is returning EID,EName,Salary columns as output. Below is the output:
EID EName Salary
12 AAA 4000
13 BBB 5000
14 CCC 6000
0 DDD 0
Total 15000
But my question is I want to delete the entire row where EID = 0. I am able to hide that column but it is giving blank space in report. I don't want any gaps in my report. I want report as follows:
EID EName Salary
12 AAA 4000
13 BBB 5000
14 CCC 6000
Total 15000
Is this possible through SSRS?
Thanks in advance,
Visu