Hi Guys!
Sorry about the late reply and thanks for your input! Anyways, just to clarify my problem, I want to send multiple selections (from a dropdown) as parameters in a query.
My WHERE clause of my query is:
WHERE City IN (#locations#)
I tried out your suggestion ded and I am getting an error:
ODBC Error Code = 07001 (Wrong number of parameters)
[Microsoft][ODBC Microsoft Access Driver] Too few parameters. Expected 3
After fiddling around by hardcoding the parameter (#locations#) in the Where clause, I found that the SQL statement only worked if the parameters already had single quotes around them: EX - WHERE City IN ('NewYork', 'Paris') etc.
The problem is that my form passes the multi select in this form: (NewYork,Paris) and that is why I get the above error. So I added single quotes "'" around my values in the dropdown but the sql statement reads it as: WHERE City IN ("NewYork", "Paris"

. This also does not work.
I hope you can understand my babblings. I would really appreciate any suggestions or advice.
Thanks!
Kimberly