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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
kubaalbrecht
Regular Visitor

Rank AVG for the data subset

Hello,

 

I have data about the scores of players in beachvolleyball tournaments:

 

Tournament IDPlayerSets wonSets lostSets diffRank AVG
1A6061
1B24-23
1C24-23
1D24-23
2A4402
2B6241
2C35-23,5
2D35-23,5
3A5231
3B4312,5
3C16-54
3D4312,5

 

I am trying to achieve to calculated the rank of each player in each tournament (last column above) based on the diffence of the won - lost sets descending.

 

I am facing 2 problems:

  1. I am not able to define the condition to execute the ranking only within the single tournament, not across all the tournaments
  2. I am missing the function which equals to Excel's RANK.AVG as Power BI's RANKX equals to Excel's RANK.EQ/RANK. The difference is in the way how ranking for the same values are calculated: RANK.AVG calculates the average ranking of the same values while RANKX/RANK.EQ/RANK return the first ranking. Example: If 2nd and 3rd values are the same, RANK.AVG returns 2.5 while RANKX/RANK.EQ/RANK returns 2.

Please can you help mi solve the two problems above?

 

Thank you

 

Kind regards

 

Jakub Albrecht

1 ACCEPTED SOLUTION

Hi @kubaalbrecht ,

 

You just need to change the code in step 2 to

= Table.AddIndexColumn(Table.Sort([allrows], {"Sets diff", Order.Descending}), "DiffRank",1)

 

The other steps remain the same and get the same result.

 

vkkfmsft_0-1658308612491.png

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

View solution in original post

11 REPLIES 11
v-kkf-msft
Community Support
Community Support

Hi @kubaalbrecht ,

 

1. Grouping based on [Tournament ID] column.

 

vkkfmsft_0-1658200149557.png

 

2. Add custom column to calculate ranking.

 

= Table.AddRankColumn([allrows], "DiffRank",
    {"Sets diff", Order.Descending},
    [RankKind = RankKind.Ordinal]
)

vkkfmsft_1-1658200254825.png

 

3. Delete other columns, keep the Custom column and expand it.

 

vkkfmsft_2-1658200287522.png

 

4. Add custom column to calculate average.

 

= let CurID = [Tournament ID], Curdiff = [Sets diff]
in List.Average( Table.SelectRows(#"Expanded Custom", each [Tournament ID] = CurID and [Sets diff] = Curdiff)[DiffRank])

vkkfmsft_3-1658200332164.png

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Hello.

Thank you very much for your help. Reading this seems clear a working solution BUT ...

On my working computer I have older version of Power BI with no rights to manage upgrade by my own, all the SW is managed centrally by IT department.

 

And in my current version of Power BI the function "Table.AddRankColumn" is missing. Do you have any idea how to solve the issue without this funtion?

 

Thank you once more for your help.

Hi @kubaalbrecht ,

 

You just need to change the code in step 2 to

= Table.AddIndexColumn(Table.Sort([allrows], {"Sets diff", Order.Descending}), "DiffRank",1)

 

The other steps remain the same and get the same result.

 

vkkfmsft_0-1658308612491.png

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

Hello, once more.

Sorry for continue asking. I though I will be able to continue on my own, but fortunatelly I am not.

Now I would like to add one more column defining the result of every single player in a every single tournament:

  • value "winner" if the ranking of the player is the lowest ranking in the single tournament
  • value "loser" if the ranking of the playes is the highest ranking in the single tournament
  • value "middle" in other cases

Can you please help me in this excercise as well?

Thank you.

Hi @kubaalbrecht ,

 

If you have the same number of people for each tournament, then you can create the following custom column.

 

= if [DiffRank] = 1 then "winner" else if [DiffRank] = 4 then  "loser" else "middle"

vkkfmsft_0-1658477751223.png

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz

 

Hello, thank you for you answer.

Unfortunally the task is not as easy because of the shared rankings and average rankings.

For example:

  • winner:
    • if a single person has the lowest ranking (= the highest difference between sets won and sets lost), then winner's ranking = 1
    • if two persons have the lowest ranking, then both winners' ranking = 1.5
    • if three persons have the lowest ranking, then all the winners' ranking = 2
  • the same way for losers:
    • a single loser: ranking 4
    • two shared losers: ranking 3.5
    • three shared losers: ranking 3

When you check rankings above, it is obvious that:

  • ranking 2 may be winner or middle based on the ranking of other players in the same tournament
  • ranking 3 may be loser or middle based on the ranking of other players in the same tournament

That is why a simple static condition considering only single player's ranking is not enough. Context of the ranking of other players within the same tournament must be considered.

 

So what I am asking for:

  • "winner" is the player whose ranking equals the lowest ranking of the certain tournament
  • "loser" is the player whose ranking equals the highest ranking of the certain tournament
  • "middle" is the player who is not winner nor loser (= whose ranking does not equal lowest nor highest ranking of the certain tournament)

Thank you for your help.

Hi @kubaalbrecht ,

 

Please try the custom column.

 

= let CurID = [Tournament ID], tab = Table.SelectRows(#"Added Custom1", each [Tournament ID] = CurID), minrank = List.Min(tab[Rank_avg]), maxrank = List.Max(tab[Rank_avg])
in if [Rank_avg] = minrank then "winner" else if [Rank_avg] = maxrank then "loser" else "middle"

vkkfmsft_0-1658736319198.png

 

Best Regards,
Winniz

Thank you! Works as desired. Only performace is not as great but that is not crucial for me.

kubaalbrecht
Regular Visitor

Hello,

 

I am trying to calculate the rank of every single player in a every single tournament regardless on the other tournaments. This means that I am not willing to calculate the rank accross all the tournaments, only within a single tournament. Cf. the problem Nr. 1 in my original post describing the same aspect as well.

 

I attach a screenshot containing the formula I would use in Excel. I need the same formula/function to covert to Power BI.

 

Screenshot from Excel describing the requested function to be converted to Power BI.Screenshot from Excel describing the requested function to be converted to Power BI.

 

Further aggregations will be executed on top of this Ranking (e.g. "Which player has the smallest avarage ranking across all the tournaments?" as an simple average of the requested "Rank AVG tournaments ranking") but the is not the task and solving within this topic now.

Jos_Woolley
Solution Sage
Solution Sage

Hi,

Can you just clarify how you get your current expected results based on that dataset? Using Excel and calculating RANK.AVG for each of the values in the Sets diff column gives results widely different from those you give.

Regards

Hello,

 

I am trying to calculate the rank of every single player in a every single tournament regardless on the other tournaments. This means that I am not willing to calculate the rank accross all the tournaments, only within a single tournament. Cf. the problem Nr. 1 in my original post describing the same aspect as well.

 

I attach a screenshot containing the formula I would use in Excel. I need the same formula/function to covert to Power BI.

 

kubaalbrecht_0-1658302571207.png

 

Screenshot from Excel describing the requested function to be converted to Power BI.

 

Further aggregations will be executed on top of this Ranking (e.g. "Which player has the smallest avarage ranking across all the tournaments?" as an simple average of the requested "Rank AVG tournaments ranking") but the is not the task and solving within this topic now.

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors
Top Kudoed Authors