I have a query in which I parameterized a column (CodeCommitteeI d). Because more than one committee can be selected I'm using the In operator. So, in the criteria line of the CodeCommitteeId column I have the following:
However, when I run the query if I enter 1,2 as the parameter value, I get no results. But if I enter only one number I get results. Why is the In not working?
Code:
In ([Forms]![f_ParamCommittees]![txtCommitteeList])
Comment