I have a report that Show or Hide certain report column based on the parameter selected. I have a table grid in SQL that should control which column to hide and which column to show when the report is rendered. The parameter to control the show or hide column is the Name column so if for example, Standard metric is select then show columns where value of each column is 1 and hide columns where value is 0, but not sure how to call it in column visibility expression. Currently, below is how I call the parameter to hide columns.
How do I hide the column based on each column numeric value because having the name showing as a parameter selection I don't know how to incorporate the numeric value (1 or 0) in the column visibility expression.
=iif((Parameters!ShowAllClientMetrics.Value = "Expanded" OR Parameters!ShowAllClientMetrics.Value = "Standard" OR Parameters!ShowAllClientMetrics.Value = "VA"), True, False)