Forum Discussion

kylerwimbush's avatar
kylerwimbush
Icon for Helper I rankHelper I
3 years ago
Solved

Get Top 10 Employees based On Total Score

I have a table with employee names called DTM Info, and the column is called Full Name. I have a measure called Total Score which is just every score added together. I want to create a measure to sho...
  • Jihwan_Kim's avatar
    Jihwan_Kim
    3 years ago

    HI,

    Thank you for your message, and please check the below screenshot and the attached pbix file.

    I amended to have a measure in the formula.

     

    Show top5 only V2: = 
    CALCULATE (
        [Score total:],
        KEEPFILTERS (
            WINDOW (
                1,
                ABS,
                5,
                ABS,
                ALL ( 'Name'[Full Name] ),
                ORDERBY ( [Score total:], DESC )
            )
        )
    )