Sql Server report parameter resets back to single selection
In one of the reports if I do a '(Select All)' on the multi select parameter and then run the report or select any other dropdown parameter it resets the 开发者_运维知识库last dropdown parameter to a single selection.
My question is why does it do that and how to enforce the last selection, which in my case is Select All.
Thanks
I have run into this problem on a number of times. In my situation, it ended up being that either the value or the label had bad data in it, typically it was an ASCII 10 character (hard return) at the end of it. By cleaning up the data it worked like a charm.
this can happen only if one parameter depends on another. You can use: Report parameters "advanced" properties and set: Refresh data when parameter changes: Never refresh
精彩评论