Hi,
I have a multivalued parameter in SSRS report. That parameter will have the values in between 1 to 10 which are populated from Dataset.
So in the subreport hidden expression i am checking for a parameter value for 7 and i have written below express.
=iif(Parameters!P_Chart_Type.Value = 7, true,false)
it is giving an error saying
" The Hidden expression for the subreport contains an error: Operator'=' is not defined for type object() and type integer."
Currently my data set is retriving 1,2,3,4,5,6,10 values and populating to paramerter.
can anyone help me with the issue.