Forum Discussion
ontario234
8 years agoHelper I
RANKX with groups
Need some regarding the Rankx function. I need to assign ranks to the candidates on their average scores grouped by their group_Name. I tried the following and recieveing an error: Rank = rankx(a...
- 8 years ago
Sorry! My bad! Its working the way it should..the problem was fixed by fixing the decimal points of average grades to 2 digits..Thank you so much again!
Zubair_Muhammad
8 years agoCommunity Champion
Hi ontario234
Try this instead
RANK =
RANKX (
FILTER (
Example_Rank,
Example_Rank[Group_Name] = EARLIER ( Example_Rank[Group_Name] )
),
Example_Rank[Average_scores],
,
ASC,
DENSE
)spartanboy
4 years agoHelper II
i am unable to select, getting red underline
= EARLIER ( Example_Rank[Group_Name] )