Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I want to count the number of distinct products where sum of sales are equal to zero.
Product and sales query are related by product.
The sales query may not have all products so the product must come from the product query not from the sales query.
Couple of methods below have been tried and not working:
SUMX(VALUES('Product'[Product Name]), IF(SUM(Sales[Amount]) = 0, 1))
CALCULATE(COUNT('Product'[Product Name]), FILTER(ALL('Sales'), SUM(Sales[Amount]) = 0 ))
Solved! Go to Solution.
Hi @009co ,
How about this one here:
Measure = CALCULATE ( DISTINCTCOUNT ( 'Product'[Product Name] ), FILTER ( VALUES ( 'Product'[Product Name] ), CALCULATE ( SUM ( 'Sales'[Amount] ) ) = 0 ) )
Let me know if this helps 🙂
/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/
Did I answer your question❓➡️ Please, mark my post as a solution ✔️ |
Also happily accepting Kudos 🙂 |
Feel free to connect with me on LinkedIn! | |
#proudtobeasuperuser | |
Hi @009co ,
How about this one here:
Measure = CALCULATE ( DISTINCTCOUNT ( 'Product'[Product Name] ), FILTER ( VALUES ( 'Product'[Product Name] ), CALCULATE ( SUM ( 'Sales'[Amount] ) ) = 0 ) )
Let me know if this helps 🙂
/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/
Did I answer your question❓➡️ Please, mark my post as a solution ✔️ |
Also happily accepting Kudos 🙂 |
Feel free to connect with me on LinkedIn! | |
#proudtobeasuperuser | |
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
28 | |
12 | |
10 | |
10 | |
6 |