Forum Discussion
Anonymous
2 years agoNot applicable
How to hide value in Matrix when not expanded/collapsed?
how not to show value in matrix column? If not expanded i want it to be blank, then when i collapsed i will see the value. thanks in advance
- 2 years ago
Hi, Anonymous
you can try to match the text color to the background so that it looks blank, that could be a woraround. or you can use ISINSCOPE dax func to determine your your current level of drill down.for example,
Measure = IF( ISINSCOPE(Table[YourColumnName]), SUM(Table[YourValueColumn]), BLANK() )refer: https://learn.microsoft.com/en-us/dax/isinscope-function-dax
Anonymous
2 years agoNot applicable
got it thank you
rubayatyasmin
2 years agoCommunity Champion
if my answer is helpful then accept it as a solution and why not give it a kudos.