Forum Discussion
dmb6996
2 years agoFrequent Visitor
Remove or hide total row sum in matrix table
Hi, I have a matrix table in PowerBI which now shows the sum on a rowlevel (see the percentages). How can I remove or hide these percentages? The summing of percentages makes sense as I have sele...
PijushRoy
Community Champion
2 years agoHI dmb6996
For this purpose, You need to use HASONEVALUE DAX
In your screenshot, it is not visible what is the 1st Level, and what is the 2nd Level
I am assuming, 1st Level is County and 2nd Row Level is State
So You need to create a Measure of the Column or exisiting Measure like below
= If(HASONEVALUE(State),[YourExisitngMeasure]," "]
This measure will turn off the total for Country level.
Can you please try and let me know
If solved your requirement, please mark this answer as SOLUTION.
If this comment helps you, appreciate your KUDOS