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

Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote 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
Power BI DataViz World Championships

Power BI Dataviz World Championships

Vote for your favorite vizzies from the Power BI World Championship submissions!

Sticker Challenge 2026 Carousel

Join our Community Sticker Challenge 2026

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

January Power BI Update Carousel

Power BI Monthly Update - January 2026

Check out the January 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.