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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
SillySuzy
Regular Visitor

How To Exclude Summary of Value For Certain Columns

Hi,

 

I'm looking for help on how to exclude the aggregation of a second value for certain columns in a Matrix I have a image below of what I mean. I want to remove the highlighted value, but keep the "Total" value. I am comparing actuals to forecast, and I don't need the forecast to be compared to each column. Thanks 🙂 

 

SillySuzy_0-1713468543119.png

 

2 REPLIES 2
Anonymous
Not applicable

Hi @SillySuzy ,

I can give you a workaround:
Try to use DAX instead of the Total of matrix. Close the Column subtotals:

vjunyantmsft_0-1713495363223.png

And use DAX to calculated the Total, for example:

Total_SUM_Amount = 
CALCULATE(
    SUM('Table'[Value]),
    ALLEXCEPT('Table', 'Table'[Category]),
    'Table'[Type] = "Amount"
)
Total_SUM_F3 = 
CALCULATE(
    SUM('Table'[Value]),
    ALLEXCEPT('Table', 'Table'[Category]),
    'Table'[Type] = "F3"
)

Then just put these two measures into the Values of the matrix:

vjunyantmsft_1-1713495481593.png

And you can only need to put Amount into this matrix without F3.
If you have any other questions about the workaround I provided, it would be helpful if you could provide a little sample data.

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

MattAllington
Community Champion
Community Champion

There is no simple way like Excel Pivot tables. 
either build an Asymmetrical table yourself as I cover here https://exceleratorbi.com.au/building-a-matrix-with-asymmetrical-columns-and-rows-in-power-bi/

or use a third party visual such as InfoRiver



* Matt is an 8 times Microsoft MVP (Power BI) and author of the Power BI Book Supercharge Power BI.
I will not give you bad advice, even if you unknowingly ask for it.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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