I have a SSRS-report (2008 R2) which uses SSAS-cube as it's data source. At the report I have a data set with a MDX-query.
At the report I have defined parameters where some of them allow multiple value and at the MDX-query they're usually restricting the data set as follows:
WHERE (
STRTOMEMBER(@PARAM),
STRTOSET(@MULTI_VALUE_PARAM)
)
At one of the data sets i need to use the value parameter at calculated member like this:
MEMBER [Measures].[MY_MEASURE] AS (
[Measures].[MEASURE_FROM_MY_CUBE],
STRTOSET(@MULTI_VALUE_PARAM)
)
This doesn't work and I don't know why?
If I change the parameter, that it doesn't allow multiple values, and use it like this:
MEMBER [Measures].[MY_MEASURE] AS (
[Measures].[MEASURE_FROM_MY_CUBE],
STRTOMEMBER(@MULTI_VALUE_PARAM)
)
it works
So it seems I can't restrict the measure with multi value parameter. How come?