I have a field called "ContactType" in my SQL dataset. This field has more than one value joined with a "," separator.
Lets say I have two records
Contact Type | RecordId
-------------|----------
A,B,C | Record1
B,C,E | Record2
Now in SSRS I have a multi-value parameter to use as a Contact Type filter. The options will be
- A
- B
- C
- D
- E
- F
When I select A and B from the filter I want to check if A or (OR) B present in the above records. The problem here is that the ContactType
field is a single string of text but contains more than one value.
How can I filter the values in the ContactType
field based on the array of values in the multi-value parameter?