Forum Discussion

kandre123's avatar
kandre123
Advocate I
6 years ago
Solved

Ranking

Hi all,

 

I am trying to do a combined ranking based on two calculated measures: EBITDA margin and CAGR. where 1 is the combined highest score of both. Problem is that i can't use measures in a RANKX function or at least i do not know how to do it.

 

I'm also struggling with how to evaluate correctly who should be on top. Would a good idea be to make a calculated table,scoring each measure from highest to lowest, and them up and rank them from a virtual table?

  • parry2k's avatar
    parry2k
    6 years ago

    kandre123 you RANK measure should be either use ALLSELECTED(DimSelskaper[Juridisk selskapsnavn]) because you are using column in the table or you should do ALLSELECTED( DimSelskaper )

     

    RankX EBITDA Margin = 
    RANKX(
    ALLSELECTED(DimSelskaper[Juridisk selskapsnavn]),
    CALCULATE([EBITDA Margin]),,
    DESC,
    Dense
    )

6 Replies

  • Not sure if This can help. Create 2 rank columns and then either do a sum or Multiple these and use that column as you rank column.

  • Hi kandre123 

    I am not sure how you would want to combine both EBITDA and CAGR. Perhaps you can sum them up in RANKX's expression argument or you can create to separate ranking, sum those ranks and use the sum in another RANKX measure.

  • v-yuta-msft's avatar
    v-yuta-msft
    Community Support

    kandre123 ,

     

    Could you please share some sample data and give the expected result?

     

    Regards,

    Jimmy Tao