I am trying to use a Shared DataSet Parameter to define a Filter Express. I have a Shared DataSet SD1. In SD1 I define a Boolean Parameter ParmBool1 with property "not used by query". Then I set a DataSet Filter, where I want to filter rows based on the boolean value of ParmBool1:
Expression: =Fields!DatabaseBool.Value
Operator: =
Value: =Parameters!ParmBool1.Value
Parsing of the expression succeeds and I am able to save the Shared DataSet without a problem. Unfortunately it appears that the shared dataset does not allow this since I get the following error:
"The filter value expression for the report 'body' refers to a non-existing report parameter 'ParmBool1'. Letters in the names of parameters must use the correct case.
Is this even possible? Any suggestions on what I am doing wrong?