Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

add incremental Column

Hi All,I need small help. How to provide Incremental Ranking, Incremental number or Add dynamic column to show on serial wise like Top 50 Rakings.    
  • v-lionel-msft's avatar
    6 years ago

    Hi Anonymous ,

     

    Try to create two measures:

    Max = MAX('Table (2)'[Value])
    Rank = 
    RANKX(
       ALLSELECTED( 'Table (2)'),
        [Max],
       , DESC, Dense
    )

    Result picture 

     

    Best regards,
    Lionel Chen

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.