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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
009co
Helper IV
Helper IV

Count distinct products where sum of sales are equal to zero

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 ))

 

CALCULATE(DISTINCTCOUNT( 'Product'[Product Name] ), FILTER (ALL( 'Product'[Product Name] ), SUM('Sales'[Amount]) = 0 )

 

 

1 ACCEPTED SOLUTION
tackytechtom
Most Valuable Professional
Most Valuable Professional

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! linkedIn

#proudtobeasuperuser 

View solution in original post

1 REPLY 1
tackytechtom
Most Valuable Professional
Most Valuable Professional

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! linkedIn

#proudtobeasuperuser 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.