I have looked at the other questions concerning Multi Value selection in reporting services and none of them fixed my issue.
My issue is this. I have a report that has a query for the parameter - @Type.
Select distinct(type)
from TypeTable
order by Type
the report paramenter is set up and the report shows all the returned results (currently 3) in the selection box.
My stored procedure has the following clause: where Type in (@Type). The report is only returning the first item in the selection box instead of all three.
Please assist.
thanks!!!