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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

dax

dd.jpg

I want to show distinct count of customers_codes but only for those values whose retailing is >0.i want to display this 24225 in a card and not that 24585. both are same distinct count but the table one (24225) is calculated after i took sum of retailing in>0 filter plane. but im not able to take that sum of retailing in card visual. 

 

1 ACCEPTED SOLUTION
MFelix
Super User
Super User

Hi @Anonymous ,

 

Try the following:

Distinct Cout = 
COUNTROWS(
FILTER(
 ADDCOLUMNS(
          ALLSELECTED(Table[Customer_Code]),
          "Retailing", SUM(Table[Retailing])
            ), 
   [Retailing] > 0
       )
)

Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



View solution in original post

1 REPLY 1
MFelix
Super User
Super User

Hi @Anonymous ,

 

Try the following:

Distinct Cout = 
COUNTROWS(
FILTER(
 ADDCOLUMNS(
          ALLSELECTED(Table[Customer_Code]),
          "Retailing", SUM(Table[Retailing])
            ), 
   [Retailing] > 0
       )
)

Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors