Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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 | |
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 6 | |
| 3 | |
| 3 | |
| 3 | |
| 2 |
| User | Count |
|---|---|
| 8 | |
| 8 | |
| 8 | |
| 7 | |
| 7 |