Forum Discussion
ThiagoDuarte
Helper I
4 years agoRank with groups and duplicates
Hello guys, I need some help with a rank column This is what I have: I need to rank rpr column inside every rpf value rpf is a report id and every rpr is a sample inside the report...
- 4 years ago
Hi ThiagoDuarte ,
How about this:
I used the following code to create a calculated column:
TomsRankColumn = RANKX ( FILTER ( Table, Table[rpf] = EARLIER ( Table[rpf] ) ), Table14[rpr], , ASC, DENSE ) - 1Does this work for you? ๐
/Tom
https://www.instagram.com/tackytechtom
tackytechtom
Most Valuable Professional
4 years agoHi ThiagoDuarte ,
How about this:
I used the following code to create a calculated column:
TomsRankColumn =
RANKX (
FILTER ( Table, Table[rpf] = EARLIER ( Table[rpf] ) ),
Table14[rpr],
,
ASC,
DENSE
) - 1
Does this work for you? ๐
/Tom
https://www.instagram.com/tackytechtom