Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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 percent without hiding the grand total of headcount (column 2 - 3201)?
Solved! Go to Solution.
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
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
Hi @smmcqueen
You can create a measure:
Hide Total specific column =
If(
isFiltered(table[Year]), [Your calculation], Blank())
Is filtered returns TRUE on the row but FALSE on the total.
You could also do HasOneValue(table[Year]) as the total has many years and the row has one.
If you are happy with this answer please mark as a solution for others to find !
Kudos are always appreciated! Check out our free Power BI video courses.
Hi @smmcqueen,
In your measure put one IF statement like this:
IF(
ISINSCOPE('YourTable'[YourColumn]),
[your measure]
BLANK() -- Return blank at the total
)
Proud to be a Super User!
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 37 | |
| 37 | |
| 33 | |
| 32 | |
| 29 |
| User | Count |
|---|---|
| 130 | |
| 88 | |
| 82 | |
| 68 | |
| 64 |