I am using Access 2003 database.
I have an employee table with fields
Empno, EmpName, Day_worked fields
Day_worked have values like 'Sunday', 'Monday', Tuesday'..etc
I am trying to parameterized query a table like
Select * from Employees where
Day_worked In ([P1])
Here P1 is a parameter where I can pass on multiple values like 'Sunday', 'Monday' ,'Tuesday'...etc at the same time
How can I do it . At present I am able to pass only one value. I would like to pass multiple values at same time.
thanks
I have an employee table with fields
Empno, EmpName, Day_worked fields
Day_worked have values like 'Sunday', 'Monday', Tuesday'..etc
I am trying to parameterized query a table like
Select * from Employees where
Day_worked In ([P1])
Here P1 is a parameter where I can pass on multiple values like 'Sunday', 'Monday' ,'Tuesday'...etc at the same time
How can I do it . At present I am able to pass only one value. I would like to pass multiple values at same time.
thanks