Forum Discussion
smmcqueen
1 year agoFrequent Visitor
Matric Visual Total Not Accurate
As you can see in the below visual, my matrix displays a total percent (thrid column at the bottom - 43.90%) that does not align with the percents in each row. Is there a way to hide the total percen...
- 1 year ago
Create a new measure that checks if the current row is a total and returns a blank value:
Display Percentage =
IF(
ISINSCOPE(YourTable[Year]),
[YourPercentageMeasure],
BLANK()
)Use this new measure in your Matrix instead of the original percentage measure.
If this helped, a Kudos π or Solution mark would be great! π
Cheers,
Kedar
Connect on LinkedIn
Kedar_Pande
1 year agoSuper User
Create a new measure that checks if the current row is a total and returns a blank value:
Display Percentage =
IF(
ISINSCOPE(YourTable[Year]),
[YourPercentageMeasure],
BLANK()
)
Use this new measure in your Matrix instead of the original percentage measure.
If this helped, a Kudos π or Solution mark would be great! π
Cheers,
Kedar
Connect on LinkedIn