Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin 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.
Hello,
I'm working on a dataset based on the following data model (well, it's part of it) :
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 :
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
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]
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])) )
Any sort column involved?
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
11 | |
11 | |
10 | |
9 | |
8 |
User | Count |
---|---|
17 | |
12 | |
11 | |
11 | |
10 |