I've got a multi value parameter that pulls available country codes to filter my table on.
if I make it single value, no problem - @country
default value to "US", and there are about 15 other countries to choose from - whichever one you pick, only the results that contain that country code pop up. However, I want the user to be able to select multiple countries to display simultaneously.
the filter at the moment is
Expression:[Country] text
Operator: =
Value: @Country
I thought the join()
function would work here, and it might yet, but that seems to be useful only for displaying the selection - if I use it, join(@Country,",")
for instance, and the user has selected "US","HK" it is going to compare the results to make sure that the query contains both of those, not one or the other. thoughts?