Forum Discussion
How to use ISINSCOPE
Hello,
I'm trying to apply a conditional formatting to my visual matrix.
I have two levels (LEVEL 1, LEVEL 2) which have different measures which I will apply to set my condtional formatting.
I've read I can use ISINSCOPE:
MEASURE FOR COLORING
MCacc , you should in reverse order. So if level one is above in a visual and level 2 is below, then use Level2, level 1
MEASURE FOR COLORING
VAR LEV_1 = ISINSCOPE(TABLE[LEVEL 1])VAR LEV_2= ISINSCOPE(TABLE[LEVEL 2])RETURNSWITCH (TRUE(),LEV_2, [MEASURE FOR LEVEL 2],LEV_1, [MEASURE FOR LEVEL 1] )IsInScope - Switch Rank at different levels: https://youtu.be/kh0gezKICEMHey,
ISINSCOPE in combination with a matrix works from top to bottom. The highest rank is always in scope, and the ranks below it only when expanded.
SWITCH also works from top to bottom on an exclusion basis. Therefore first use the LVL2 condition and then the LVL1 condition:
MEASURE FOR COLORING = VAR LEV_1 = ISINSCOPE ( TABLE[LEVEL 1] ) VAR LEV_2 = ISINSCOPE ( TABLE[LEVEL 2] ) RETURN SWITCH ( TRUE (), LEV_2, [MEASURE FOR LEVEL 2], LEV_1, [MEASURE FOR LEVEL 1] )Thank you so much, it works!
4 Replies
- amitchandakSuper User
MCacc , you should in reverse order. So if level one is above in a visual and level 2 is below, then use Level2, level 1
MEASURE FOR COLORING
VAR LEV_1 = ISINSCOPE(TABLE[LEVEL 1])VAR LEV_2= ISINSCOPE(TABLE[LEVEL 2])RETURNSWITCH (TRUE(),LEV_2, [MEASURE FOR LEVEL 2],LEV_1, [MEASURE FOR LEVEL 1] )IsInScope - Switch Rank at different levels: https://youtu.be/kh0gezKICEM- MCaccHelper IV
Thanks! it works as well!!
- BarthelSolution Sage
Hey,
ISINSCOPE in combination with a matrix works from top to bottom. The highest rank is always in scope, and the ranks below it only when expanded.
SWITCH also works from top to bottom on an exclusion basis. Therefore first use the LVL2 condition and then the LVL1 condition:
MEASURE FOR COLORING = VAR LEV_1 = ISINSCOPE ( TABLE[LEVEL 1] ) VAR LEV_2 = ISINSCOPE ( TABLE[LEVEL 2] ) RETURN SWITCH ( TRUE (), LEV_2, [MEASURE FOR LEVEL 2], LEV_1, [MEASURE FOR LEVEL 1] )- MCaccHelper IV
Thank you so much, it works!