I have a text prompt where the user is prompted to enter for values.
For example if the user enters a value 123,i get the WHERE clause in sql as "WHERE value='123'" and the reports works good.
but when the user enters multiple values seprated by comma for example like 123,546,769. the WHERE clause in the sql will be "WHERE value='123,546,768' and no records will be retrived.
The sql i am expecting is "WHERE value in ('123,'546','768')"
is it possible for user to enter multiple values at one time separated by comma in the prompts?
Thanks
For example if the user enters a value 123,i get the WHERE clause in sql as "WHERE value='123'" and the reports works good.
but when the user enters multiple values seprated by comma for example like 123,546,769. the WHERE clause in the sql will be "WHERE value='123,546,768' and no records will be retrived.
The sql i am expecting is "WHERE value in ('123,'546','768')"
is it possible for user to enter multiple values at one time separated by comma in the prompts?
Thanks