I just created a report with 2 parameters and it works fine. If I change one of them to MV it still works but if I pick 2 values I get a message about a problem with the "," - Incorrect syntas near ','
Is this a known problem or is it something I'm doing. Is a problem is there a fix for it.
YOu habe to change your query after changing the parameter type, as your query probably look like
WHERE SomeColumn = @.MyParameter
which will evaluate in a MV-Parameter to
WHERE SomeColumn = 'A','B'
This is not valid SQL. Therefore you to write your query like the one below.
WHERE SomeColumn IN (@.MyParameter)
That should work for you and your value list.
HTH, Jens Suessmeyer.
http://www.sqlserver2005.de
|||Works perfect - thank you.
No comments:
Post a Comment