Is it possible to assign the values of a multi-value parameter to arrays? I want to be able to pass the value (array of strings) to my query so that I can filter like so:
INNER JOIN blah E
ON E.EventKey = F.EventKey
AND E.EventCd in (@ParameterArray)
In my Parameter I want to do something like this:
Label | Value
1 | ('12323467', '12398723')
2 | ('12938412', '12343211', '91TS1231')
etc.
The goal here is so the users of my report won't have to select each code individually, they can just select the bin it's a part of in the multi-value dropdown and the query/report will do the rest. I've tried to use split/join in different ways but haven't found a solution to this.
In addition, if a user selects multiple values from the dropdown I want to append the arrays. I'm unsure if this is possible in SSRS 2012.