Hi Friends,
I have small problem in my SSRS report.
Retirement is : Have 2 input parameters(parm1, parm2), 3 tablix in my report. Based on input parameters what i have to pass trough the inputs parameters. My tablix should have to show OR hide based on 2 scenarios.
Scenario 1: When i will enter the values in parm1 then only tablix1 should have to shows remaining (2,3)tablix are in hide , using this expression (IIF( Parameters!Parm1.Count > 0 and Parameters!Parm2.Count = 0 , TRUE,FALSE)) to show the tablix1
Scenario 2: When i will enter the values in parm2 then only tablix2 should have to shows remaining (1,3)tablix are in hide , using this expression (IIF( Parameters!Parm1.Count = 0 and Parameters!Parm2.Count > 0 , TRUE,FALSE)) to show tablix2
Scenario 3: When i will enter the values in parm3 then only tablix3 should have to shows remaining (1,2)tablix are in hide , using this expression (IIF( Parameters!Parm1.Count > 0 and Parameters!Parm2.Count > 0 , TRUE,FALSE)) to show
tablix3
BUT in my report scenairo 3 is not working as expected. if we enter the values in both parm1, parm2 . Tablix1, Tablix3 is showing in in SSRS report. I want to hide tablix1, tablix2 tables, Only tablix3 should be visible.
CAN ANYONE HELP ME how to fix the issue