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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
zoubeyrB
Frequent Visitor

ALL showing an unexpected behavior in a matrix

Hello,

I'm working on a dataset based on the following data model (well, it's part of it) :

question_illustr_1.png

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Il created the following measure to calculate the sum of quantity without taking into account the product's sub-category :

Measure = CALCULATE(sum(sales[quantity]),ALL(products[product_subcategory]))
When the measure is used in a matrix view it shows a peculiar behavior :
question_illustr_2.png
 
Both visuals (A) and (B) are filtered on the products' prices (slicer in the bottom left) and of Product_Category = "Office Supplies". Table (B) matches the expected behavior, which is not the case for table (A). 
 
Note that using ALLSELECTED instead of ALL fixes that issue.
 
 
 
question_illustr_3.pngWhen the slicer is based on a calculated column in the sales table
( product_price  = related(products[product_salePrice])  ) the expected behavior is shown in the visual (A).
 
 
 
 
 
 
 
Is that the normal behavior for ALL ?
 
Thanks in advance,
4 REPLIES 4
Anonymous
Not applicable

Hi all ,thanks for the quick reply, I'll add more.

Hi @zoubeyrB ,

Regarding your question, this may involve the underlying principle of the 'ALL' function. When I removed the slicer and used the filter condition of 'price > 60' as the parameter of the Calculated function, the 'ALL' function worked properly, so I think if a column is affected by indirect filtering, the 'ALL' function cannot clear the filter.

 

Best Regards,
Wenbin Zhou

FlipFlop1
Advocate I
Advocate I

The ALL() function used in as a filter in Calculate is removing the filter on product_subcategory, so it works on Matrix B which uses product_subcategory in the first row,
but not matrix A which has product_category in the first column. Matrix A is not being filtered by product_subcategory, so there
is nothing to remove.

ALL
(products[product_subcategory]
zoubeyrB
Frequent Visitor

No. I think that DAX aggregates on product_saleprice as well. If I make the following calculations I get the same results :
1) initial dataset ==>  filter on product_saleprice > 60 ==> aggregate on product_Category and product_saleprice and calculate the total quantity for each combination of values (sum1
2)  initial dataset ==>  filter on product_saleprice > 60 ==> select distinct values of product_Category, product_subCategory and product_saleprice

3) join results from steps (1) and (2)
4) result of step 3 ==> aggregate on product_Category and product_subCategory and calculate the sum of sum1

 

The calculation seems coherent (filter then aggregate on all fields excluding product_subcategory), but the viewed result is misleading. A more correct result can be obtained from the following formula :

measure2 = CALCULATE(sum(sales[quantity]),
                       ALLSELECTED(products[product_subcategory],products[product_salePrice]))
                    )
lbendlin
Super User
Super User

Any sort column involved?

 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

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.