Quantcast
Channel: SQLServerCentral » Reporting Services » Reporting Services » Latest topics
Viewing all articles
Browse latest Browse all 2791

SSRS. Parametres mdx script doesn't work with multi-value

$
0
0
Hi ALL,I need your your help!!I want to create a report with multi-value parameters with SSRS.So, I wrote this mdx script: WITH -- Geography metadata MEMBER [Measures].[Geographie] AS StrToValue ( @SelectionGeographie + ".Hierarchy.Currentmember.Uniquename" ) MEMBER [Measures].[Geographie_Label] AS StrToValue( @SelectionGeographie + ".Hierarchy.CurrentMember.Member_Caption" ) -- Activity metadata MEMBER [Measures].[Activite] AS StrToValue( @SelectionActivite + ".Hierarchy.Currentmember.Uniquename" ) MEMBER [Measures].[Activite_Label] AS StrToValue( @SelectionActivite + ".Hierarchy.CurrentMember.Member_Caption" ) -- Date metadata MEMBER [Measures].[Temps] AS StrToValue( @Annee + ".Hierarchy.Currentmember.Uniquename" ) MEMBER [Measures].[Temps_Label] AS StrToValue( @Annee + ".Hierarchy.CurrentMember.Member_Caption" ) -- Perimetre metadata MEMBER [Measures].[Perimetre] AS StrToValue( @Perimetre + ".Hierarchy.Currentmember.Uniquename" ) MEMBER [Measures].[Perimetre_Label] AS StrToValue( @Perimetre + ".Hierarchy.CurrentMember.Member_Caption" ) SELECT NON EMPTY { -- display the parameters attributes on columns [Measures].[Geographie], [Measures].[Geographie_Label], [Measures].[Activite], [Measures].[Activite_Label], [Measures].[Temps], [Measures].[Temps_Label], [Measures].[Perimetre], [Measures].[Perimetre_Label], [Measures].[11 VA] } ON COLUMNS, ( STRTOSET ( "{" + @SelectionGeographie + "}") , STRTOSET ("{" + @SelectionActivite + "}" )) ON ROWS FROM [MyCube] WHERE STRTOTUPLE ( "(" +@Annee + "," + @Perimetre + ")" )But It works with one value in parameter and not with muti-value parameters. I have null result in my metadata members when I have multi value.Any idea ?Thank U

Viewing all articles
Browse latest Browse all 2791

Trending Articles