crystaldev1
Programmer
I have a parameter setup in the sql command of the report as follows:
select *
from table
where name in (?ParameterName)
This parameter has more than one values. So I have values already setup in the parameter (e.g. John Smith, Bob Hope, Steve Johnson, etc.). I can add more names as I wish. So I would like use the parameter so that sql command will treat it as the following:
..
where name in ('John Smith','Bob Hope','Steve Johnson').
Thanks.
select *
from table
where name in (?ParameterName)
This parameter has more than one values. So I have values already setup in the parameter (e.g. John Smith, Bob Hope, Steve Johnson, etc.). I can add more names as I wish. So I would like use the parameter so that sql command will treat it as the following:
..
where name in ('John Smith','Bob Hope','Steve Johnson').
Thanks.