I have a SSRS Report calls a stored procedure to get the result set. One of its column is a "Owner" column which can have 0 or more person name and the string is concatenated with a " & ". I can't change the stored procedure so in the report I need to add a multivalue report parameter. This parameter displays all the possible owner name in the drop down and need to use this parameter to do a post-filter after the result set is back from the stored procedure call. My question is how to create this filter on the Owner field that works like a string.contains? To better illustrate, below is an example:
Below is the raw result set
Ticket Number Owner
100 John Doe & Jane Doe
101 John Doe & Jack Smith
102 John Doe & Bill White
If user selects Jack Smith and Bill White in the Owner parameter drop down, the result should be
Ticket Number Owner
101 John Doe & Jack Smith
102 John Doe & Bill White
If only John Doe is selected, all 3 rows should be returned.