Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
NameTaken
Regular Visitor

Matrix values issue

Hello everyone, 

 

I am trying to create a matrix that has both classifications and triggers where we are suming values (utilizing a case statement in my SSMS query). This part is working fine. 

 

At the end of the matrix I am trying to add in some additional information, where we are taking the totals of the aforementioned and multiplying them by a PD and an LGD to get a reserve amount. 

 

I was able to create a couple of measures that allow me to only show these PDs, LGDs and Reserves after the totals column and not in the value rows  but they are still showing as blank column headers in the body of the matrix. 

 

Total PD = IF(NOT(ISINSCOPE(Query2[Trigger])), MAX(Query2[PD]), Blank())
Total LGD = IF(NOT(ISINSCOPE(Query2[Trigger])), MAX(Query2[LGD]), Blank())
Total Reserves = IF(NOT(ISINSCOPE(Query2[Trigger])),SUM(Query2[Reserves]), Blank())

 

I am also having an issue with the 100% at the end of the PD/LGD totals as it is not necessary and should be blank.

 

I would like to get rid of/hide the highlighted sections in the screen shot below. 

 

NameTaken_0-1718223094157.png

Failed solution attempts from youtube/internet: chaning color of text to match background color, removing totals in formatting pane, right click - exclude (ends up excluding the entire column not just the yellow), resizing columns. 

 

I dont understand why its not as easy as right click - hide. Seems overly complicated for something so simple. 

 

Thank you all for your time! 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @NameTaken 

 

The PowerBI matrix is designed to be just that, and you can refer to the replies to this post to achieve the effect you want:
Solved: Remove/hide column on Matrix table - Microsoft Fabric Community
Solved: Matrix - Hide a column in visual but consider in c... - Microsoft Fabric Community



Best Regards,

Jayleny

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
NameTaken
Regular Visitor

Thank you @Anonymous !! 

This worked well to hide those columns. Nice simple approach. 

 

For anyone wondering about the yellow highlighted totals at the bottom, I changed my PD and LGD measures to a bit with the guidance of the below: 

IF(
ISINSCOPE(F_AMOUNTS[Heading]) || ISINSCOPE(F_AMOUNTS[PARTS]),
SUM(F_AMOUNTS[Amount per unit]),
BLANK()
)

which I got from Solved: remove total of one column - Microsoft Fabric Community 

Anonymous
Not applicable

Hi @NameTaken 

 

The PowerBI matrix is designed to be just that, and you can refer to the replies to this post to achieve the effect you want:
Solved: Remove/hide column on Matrix table - Microsoft Fabric Community
Solved: Matrix - Hide a column in visual but consider in c... - Microsoft Fabric Community



Best Regards,

Jayleny

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors