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

Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.

Reply
Intellar
Frequent Visitor

Remove columns from matrix without changing row percentage

I got a matric table with multiple columns based on 1 field
Now for display i want to remove 2 column values but that changes the percentage values of the other columns while they should remain the same.
Is there a way to not show the columns withoud changing the percentages?

Standard

Intellar_1-1699539169401.png


After removing the second column

Intellar_2-1699539250718.png

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Intellar 

You can consider to use ALL() or ALLEXCEPT() function. it will not affected by the filter.

e.g 

Measure =
CALCULATE ( SUM ( table[value] ), ALLEXCEPT ( table, [Month] ) )

You can refer to the following link about the functions.

ALL function (DAX) - DAX | Microsoft Learn

ALLEXCEPT function (DAX) - DAX | Microsoft Learn

 

Best Regards!

Yolo Zhu

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

1 REPLY 1
Anonymous
Not applicable

Hi @Intellar 

You can consider to use ALL() or ALLEXCEPT() function. it will not affected by the filter.

e.g 

Measure =
CALCULATE ( SUM ( table[value] ), ALLEXCEPT ( table, [Month] ) )

You can refer to the following link about the functions.

ALL function (DAX) - DAX | Microsoft Learn

ALLEXCEPT function (DAX) - DAX | Microsoft Learn

 

Best Regards!

Yolo Zhu

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

 

Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

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

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

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