Forum Discussion
guenfood
4 years agoNew Member
Rank by index
Hi, I've got a table with an index column. To display many text informations in cards, i create measures which could display values according to ranking position. But this ranking position must...
- 4 years ago
Hi guenfood ,
According to your description, I did the test reference as follows:
Column = "Rank" & RANKX ( FILTER ( ALL ( 'Table (2)' ), 'Table (2)'[Index] = EARLIER ( 'Table (2)'[Index] ) ), [Value], , ASC, DENSE )
If I have misunderstood your requirements, please point out and provide some test data and screenshots of the desired results so that I can fix them as soon as possible. Looking forward to your reply.
Best Regards,
Henry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
amitchandak
Super User
4 years agoguenfood , Seem like you are trying to create a measure, for the measure you need a measure
GlobalRANK = RANKX(BDD, calculate(count([Index])))
Column Rank can be done like
GlobalRANK = RANKX(BDD, [Index])