Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreThe FabCon + SQLCon recap series starts April 14th at 8am Pacific. If you’re tracking where AI is going inside Fabric, this first session is a can't miss. Register now
| Uid | Country Id | Rank |
| U01 | C01 | 10 |
| U01 | C01 | 10 |
| U02 | C02 | 10 |
| U02 | C01 | 10 |
| U03 | C03 | 10 |
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
| Uid | Country Id | Rank |
| U01 | 1 | 10 |
| U02 | 2 | 20 |
| U03 | 1 | 10 |
I use distinctcount(countryID) and i am getting distinct count - but struggling to get sum of rank for those distinct count countries.
Hi @john_Learner
Please refer to attached sample file
Countries Count = COUNTROWS ( VALUES ( 'Table'[Country Id] ) )Rank Sum =
SUMX (
VALUES ( 'Table'[Country Id] ),
CALCULATE ( MAX ( 'Table'[Rank] ) )
)
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.
seems ok for this example. when i try to apply the same to new need its failing.
Any help
Hi @john_Learner ,
Please try:
Countryid = DISTINCTCOUNT('Table'[Country Id])
SumRank =
var _a =DISTINCT('Table')
return SUMX(_a,[Rank])
Final output:
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.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 53 | |
| 40 | |
| 38 | |
| 19 | |
| 18 |
| User | Count |
|---|---|
| 69 | |
| 68 | |
| 34 | |
| 33 | |
| 30 |