Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Require help with creating 2 levels of Ranks

hi, I am trying to create a rank at 2 level - Region and State per say based on a calculated measure (wages / sales). I have Sales and Wages data at day level and have dimension tables for location - ...
  • MFelix's avatar
    MFelix
    6 years ago

    Hi Anonymous ,

     

    Try the following measures:

     

    Rank by District =
    IF (
        HASONEVALUE ( Branch[Branch] );
        RANKX ( ALLSELECTED ( Branch[Branch] ); ( [Ratio] );; ASC; SKIP )
    )
    
    
    
    Rank by Region =
    IF (
        HASONEVALUE ( Branch[Branch] );
        RANKX ( ALL ( Branch ); ( CALCULATE ( [Ratio] ) );; ASC; SKIP )
    )

     

    The branch table is you location table. I'm assuming your Ratio is a measure, altough on the sample table you provide the calculation between wages and sales for district 2 is not matching.