I have an SSRS Report parameter set up with 3 different values ("Paid", "Denied" and "Open"). I want to set a tablix filter up so when the user selects one of the parameters, and a condition in the data is met, that row is returned. I want to give the user the option to select all there parameter values. When I use the following Expression into the Tablix filter(Paid), it works correctly:
=IIf(Parameters!ClaimStatus.Value(0) = "Paid"
and Fields!TotalPaid.Value > "0"
, "Include"
, "Exclude")
If I try adding an additional filter(Denied) with the following Expression, neither filters work:
=IIf(Parameters!ClaimStatus.Value(0) = "Denied"
and Fields!Denied.Value > "0"
, "Include"
, "Exclude")
Is it possible to pass multiple parameters into a Tablix Filter? I've searched all day with no luck. Any help would be greatly appreciated. Thanks.