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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Sammy22
Helper I
Helper I

Countifs function with unique element

Hello,

 

I am trying to calculate the 'count' column in pBI but am struggling. I need to count the unique number of countries each customer is assigned to, for example John has 4, peter has 1 (Italy).

 

Order NumberCustomerCountryCount
1aJohnUK4
2aDavidMexico3
3aPeterItaly1
1bJohnGermany4
2bDavidFrance3
3bPeterItaly1
1cJohnUK4
2cDavidEgypt3
3cPeterItaly1
4aJohnPoland4
1 ACCEPTED SOLUTION
bhanu_gautam
Super User
Super User

@Sammy22 , Try using below mentioned DAX measure

 

Count = CALCULATE(DISTINCTCOUNT('Table'[Country]), ALLEXCEPT('Table', 'Table'[Customer]))




Did I answer your question? Mark my post as a solution! And Kudos are appreciated

Proud to be a Super User!




LinkedIn






View solution in original post

2 REPLIES 2
bhanu_gautam
Super User
Super User

@Sammy22 , Try using below mentioned DAX measure

 

Count = CALCULATE(DISTINCTCOUNT('Table'[Country]), ALLEXCEPT('Table', 'Table'[Customer]))




Did I answer your question? Mark my post as a solution! And Kudos are appreciated

Proud to be a Super User!




LinkedIn






Thank you! What if i want a date filter too with a date after 2022-01-02? @bhanu_gautam ?

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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