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
john_Learner
New Member

distinct User ID - count of Distinct Country ID and then the sum of Rank

UidCountry IdRank
U01C0110
U01C0110
U02C0210
U02C0110
U03C0310

Now I need the distinct User ID - count of Distinct Country ID and then the sum of Rank

output is below in a table using DAX

UidCountry IdRank
U01110
U02220
U03110

 

I use distinctcount(countryID) and i am getting distinct count - but struggling to get sum of rank for those distinct count countries.

5 REPLIES 5
tamerj1
Super User
Super User

Hi @john_Learner 
Please refer to attached sample file

1.png2.png

Countries Count = COUNTROWS ( VALUES ( 'Table'[Country Id] ) )
Rank Sum = 
SUMX ( 
    VALUES ( 'Table'[Country Id] ),
    CALCULATE ( MAX ( 'Table'[Rank] ) )
)

 

v-jianboli-msft
Community Support
Community Support

Hi @john_Learner ,

 

Sorry for that the information you have provided is not making the problem clear to me. Can you please share more details to help us clarify your scenario?

Please provide me with more details about your table and your problem or share me with your pbix file after removing sensitive data.

 

Refer to:

How to provide sample data in the Power BI Forum

How to Get Your Question Answered Quickly

 

Best Regards,

Jianbo Li

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

john_Learner
New Member

seems ok for this example. when i try to apply the same to new need its failing.

john_Learner
New Member

Any help 

v-jianboli-msft
Community Support
Community Support

Hi @john_Learner ,

 

Please try:

Countryid = DISTINCTCOUNT('Table'[Country Id])

SumRank = 
var _a =DISTINCT('Table')
return SUMX(_a,[Rank])

Final output:

vjianbolimsft_0-1663754444521.png

Best Regards,

Jianbo Li

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

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.