Forum Discussion
teng1
3 years agoFrequent Visitor
Disable matrix summarized total
Hi All, May i know is it possible to disable the auto summarized total in a matrix visual ? I know that when the rows are collapsed, matrix will automatically apply function Sum to the figures. How...
- 3 years ago
teng1 , You can disable subtotal and you use the per row option to disable particular subtotal
You can also control it using, isinscope
Switch(True(),
isinscope(Table[Lowset level]), [Meausre],
isinscope(Table[level 1]), [Measure 2],
isinscope(Table[level 2]), blank())
amitchandak
3 years agoSuper User
teng1 , You can disable subtotal and you use the per row option to disable particular subtotal
You can also control it using, isinscope
Switch(True(),
isinscope(Table[Lowset level]), [Meausre],
isinscope(Table[level 1]), [Measure 2],
isinscope(Table[level 2]), blank())
teng1
3 years agoFrequent Visitor
Hi amitchandak,
Thanks for showing the direction.
Here is what works for me.
Previously i made a mistake on the lowest level measure.
Regards.