I have parameter called CodeValue which is optional or passed as comma delimited string (multiplevalue) from application to SSRS Report.
I have configured SSRS filter expression like
=ISNOTHING(Parameters!CodeValue.Value) or (Fields!Code.Value = Parameters!CodeValueValue) and Type as "Boolean" operator as "=" and Value as "True"
When I pass multiple value (delimited string) in frontend for Parameter Codevalue it is not returning any records.
How will I do something like seen below
=ISNOTHING(Parameters!ICD_1.Value)or(Fields!ICD_1.Value In Parameters!ICD_1.Value)