This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreGet Fabric Certified for FREE during AI Skills Fest. This week only. Secure your voucher now.
I have one table that have 3 columns
1. country
2. Score
3. Rank
then i create a measure to calculate average(Score for few group of country.. e.g Europe, APAC,
my question is how to rank the measure value(average) inside the above list OR can we create the measure to calculate the rank
e.g
AvgValue for Europe = 49.90
Country Score Rank
Austria 50.80 21
Australia 50.20 22
Estonia 49.50 23
>>> wanted result.. rank for "avgValue for Europe" = 23
thnaks in advance for any help.
Solved! Go to Solution.
Hi @Suman8877
To get solution please follow the following procedure below:
Make a copy in Power Query Editor, select the [Country] and [Continent] columns and execute Unpivot Columns.
Remove unwanted columns.
Create two new measures.
AVG OF SCORE = AVERAGE('Table2'[Score])RANKING = RANKX(ALLSELECTED('Table2'[Area]),[AVG OF SCORE])
Hi @Suman8877
To get solution please follow the following procedure below:
Make a copy in Power Query Editor, select the [Country] and [Continent] columns and execute Unpivot Columns.
Remove unwanted columns.
Create two new measures.
AVG OF SCORE = AVERAGE('Table2'[Score])RANKING = RANKX(ALLSELECTED('Table2'[Area]),[AVG OF SCORE])
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 22 | |
| 22 | |
| 21 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 55 | |
| 54 | |
| 46 | |
| 26 | |
| 24 |