Reputation: 337
I am building an SSRS report using SSAS as the data source, and I need a drill down to include 4 of 6 account stages within my account population. The problem stems from not being able to use the [All] member because I only need 4 of the 6 stages.
Is there a way to pass multiple values to the drill down report, by building a list of hard coded parameters I want to use?
I think the Join function my work, but I have been unsuccessful so far.
Upvotes: 0
Views: 1438
Reputation: 36
We had a similar situation in which we wanted a drill down report to display two categories of items rather than just one.
We couldn't find an elegant work around, tried placing arrays in the parameter, and almost went as far as to write a function that returned a table.
We slapped ourselves on the face when we realized that you just add another parameter passing the same attribute with the second value.
Example below:
I have 3 types of item. I have 2 cells in a report. One of which I want to drill down to a report on Type 1, and the other I want to drill down to the same report on Type 2 and Type 3.
For the cell I want to drill to Type 1, we used the Parameters! function, but for the Type 2 and 3 drill down we just hard coded the type parameter in twice.
Once to pass Type 2 and once to pass Type 3.
It is not elegant, but it works.
Upvotes: 2