I have an SSRS report that has two tables inside the report. I can normally hide or display them utilizing something like the below in the report properties visibility-hidden section.
=iif(Parameters!AutoDrillDown.Value = 2, true, false)
How would I do this if not looking at the actual parameter but the values in the parameter? For instance, if the end-user selects Option A,and B in the parameter it will display the first table. If C and D, the second table. If A,B,C, and D...both tables? Can this be done in that section? I am really not that good with SQL so any advice would be much appreciated. Thanks.