I have several parameters on an SSRS report. There are two grou开发者_StackOverflow社区ps of these parameters. One group is report specific, the other group is data specific. I would like to be able to seperate these two groups of paramaters for ease of use. Is it possible to introduce formatting into the Parameters section of an SSRS report? Thanks
Unfortunately, no. Best you can do is to just change the order of the parameters so the report parameters are the top few rows and the data parameters are lower. Then perhaps change their names to include a prefix.
You could build your own parameter page and format it as you choose, but it can't replace the built-in page in the Report Manager.
EDIT: URL example mentioned in comments:
http://servername/reportserver?%2fFolder%20Name%2fReport%20Name&rs:Command=Render&Parameter1Name=Value1&Parameter2Name=Value2
The first parameter on the querystring is the report manager path to the report. It's URL encoded so / becomes %2f and space becomes %20. This MSDN page has more info.
精彩评论