I want to pass report parameters within ssrs url, but one of the values of a parameter contains &, so url won't work.
example:
https://myrshost/ReportServer?/AdventureWorks2008R2/Employee_Sales_Summary_2008R2&ReportMonth=3&&Category=cup&saucer&ReportYear=2008
In this example the is & in value of parameter Category.
Currently as a work around I am replacing the value which I pass to category with
REPLACE(CategoryParameterValue,"&","(and)")
and then in the dataset I am replacing (and) back to &. This work around works fine, but I want to check whether there is any other solution for this issue.
Please help.