Hello!
In my SSAS Cube I have created a dynamic named set "top 10 e-learnings by language" which consists out of a set of tupels. Each tupel has two attributes out of the same base dimension "training": attribute 1 is "sprache" (language) and attribute 2 is "training text".
CREATE DYNAMIC SET CURRENTCUBE.[Top 10 eTrainings pro Sprache] AS Generate( { [Training].[Sprache].[Sprache].Members }, TopCount( EXISTING { [Training].[Sprache].CurrentMember * [Training].[Training Text].[Training Text].Members }, 10, [Measures].[Teilnahmen eTraining] ) ), DISPLAY_FOLDER = '\Training' ;
Normally a named set would be automatically visible in Excel Pivot under the dimension you used to create the named set, but it seems that named sets with tuples which have more than one attribute are placed in a separate folder "Sets" in
between the measures and dimensions.
Additionally in the SSAS cube browser this named set is not visible at all.
Is there any way to tell the named set in which dimension it should appear or any workaround?
(P.S.: The DISPLAY_FOLDER property does not achieve the trick)
Thank you in advance,
Christian