The report works for just 1 choice, but when I add more than one, it does not return anything ( no errors, just nothing in the report).
My SQL statement includes the parameter @Region
where Region_Name IN (@Region)
In the Region parameter's properties, I set to allow multiple values.
in the dataset filter's properties:
Expression: =Fields!Region.Value
Operator: IN
Value: =Parameters!Region.Value(0)
*EDIT I removed the dataset filter as suggested.
Below are the properties for the parameter. The available values come from another data set that is a distinct list of regions.
Region
parameter in both theExpression
andValue
? – iamdave=Parameters!Region.Value(0)
specifies the first parameter value with the(0)
. Try just using=Parameters!Region.Value
. – Hannover Fist