I've one main report in which I have created two different Tablix. (Both have different dataset)
My question is, How can I hide tablix on condition base in SSRS.
For example:
Parameters!First.Value="Y" then hide only first tablix and show second tablix but if Parameters!First="Y" AND Parameters!Second.Value="Y" then show only first tablix not the second one.
How can I achieve this, Please help.
=IIF(Parameters!First.Value="Y",False,True)but the main problem is how can I hide other tablix from this expression? - pedramParameters!First.Value="Y"so it is showing both tablix in such condition. - pedram