Forum Discussion
PaulinRoc
3 years agoFrequent Visitor
Rank by a column excluding another column
Hello to all, I would like to create a ranking column that ranks wines according to the average score obtained. Here is my dataset : Here is my objective: The problem is th...
- 3 years ago
Hello
Try this measure:
Rank = var _rank = RANKX( ALLSELECTED('Wine Score'), CALCULATE( sum('Wine Score'[Score]), ALLEXCEPT('Wine Score','Wine Score'[Wine]) ), , DESC, Dense ) return _rankBest regards
Bruno Costa | Solution Supplier
Did I help you to answer your question? Accepted my post as a solution! Appreciate your Kudos!! 👍
Take a look at the blog: PBI Portugal
onurbmiguel_
Power Participant
3 years agoHello
Try this measure:
Rank =
var _rank =
RANKX(
ALLSELECTED('Wine Score'),
CALCULATE(
sum('Wine Score'[Score]),
ALLEXCEPT('Wine Score','Wine Score'[Wine])
),
,
DESC,
Dense
)
return
_rank
Best regards
Bruno Costa | Solution Supplier
Did I help you to answer your question? Accepted my post as a solution! Appreciate your Kudos!! 👍
Take a look at the blog: PBI Portugal
PaulinRoc
3 years agoFrequent Visitor
Thank you for your answer.
But now I would like the row to take into account the type of wine (red or white).
How to make the rank taking into account the type of wine but without taking into account the taster?