I'm trying to find out whether it is possible to engineer a SSRS report where the array of selectable values for a Parameter changes depending on the selected value(s) of another parameter.
Let's say I have the following two parameters :
House : (multi-select parameter wit开发者_如何学Ch the below selectable values)
[x] Auckland
[ ] Christchurch
Furniture : (multiselect also, with a list of furniture within those houses)
[ ] AKL-TABLE
[ ] AKL-CHAIR
I want to know how to achieve showing/hiding values that belong to a collection tied to each house, in a SSRS report.
If it is not impossible, what extra tables will I need to enable this? If it is impossible within the frame of SSRS, I will give up on it.
It's known as cascading parmeters.
The DataSet for the Furniture dropdown should refer to the House dropdown to filter it. So when House changes, the selection in Furniture changes (this includes initial load too)
Some tutorials:
- MSDN
- With pictures
- Google search
精彩评论