MDX Dynamic Subset with Value from other Cube
Posted: Tue Feb 16, 2021 4:46 pm
Hi Mates,
i tried to make a new dynamic subset based on my very low MDX skills and figured out a problem, may someone can help me out.
i Filter the Dimension "GuV Gliederung" and look in the Cube "GuV Gliederung Attribute" for the "köpfe" measure if its greater then 1 add the element so the subset.. So this works fine, but i want that the subset is Dynamic according to the Version and Year (Jahre) selected in the Cube.
I tried this with [Jahre].CurrentMember , but it doesnt work, i think cause its "just a subset" and it cant get the selected value from the cube viewer.
Is there any Workaround for this?
Thanks and BR
i tried to make a new dynamic subset based on my very low MDX skills and figured out a problem, may someone can help me out.
Code: Select all
{
Filter({
[GuV Gliederung].members
},[GuV Gliederung Attribute].([Jahre]. [2021], [Version].[Version].[Prognose 4],[GuV Gliederung Attribute].[Köpfe])>1)
}
I tried this with [Jahre].CurrentMember , but it doesnt work, i think cause its "just a subset" and it cant get the selected value from the cube viewer.
Is there any Workaround for this?
Thanks and BR