Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
moodi_z
Starting Member
38 Posts |
Posted - 2009-03-26 : 07:04:38
|
Hi,I have a form with multiselect listboxes, and I nedd to pass the multi selected values to thier appropriate parameters in the report but I'm getting an error (report error) that the parameter value is missing!How can I sett the report parameter in order to enable getting a string from the form (with "," separetor - then I send it to a stored procedure)?Regards. |
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2009-03-28 : 05:00:24
|
WHERE ',' + Yourparameter + ',' LIKE '%,' + YourField + ',%' |
|
|
|
|
|