I have a problem I have a query that requires multiple values
SELECT * FROM customer
WHERE department IN (@pValueParm)
the actual values I would like to have are two set for two options if the click "Q&M" should send to the query pValueParm the values E, I "Capital" should send to the query pValueParm the values M, T.
Basically if they click both it should send all 4 E,I,M,T
SELECT * FROM customer
WHERE department IN (E,I,M,T)
I created a Parameter pValueParm and selected "Specify Values Label Q&M and the Values as E,I Label Capital and the values as M,T
However, it is not working. Any ideas what is the best way to accomplish this? Thanks