Forum Discussion
Require help with creating 2 levels of Ranks
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.
6 Replies
- AnonymousNot applicable
Sorry for some reason could not put in the sample data and desired output in the original post - looking to calculate Column G & H in the below screenshot
Regards,
Sumanth
- MFelix
Super User
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.
- AnonymousNot applicable
hi MFelix - Thank you for your quick response; I shall give this a shot and get back to you..
Also yes, Ratio is a measure - the mock data got a little messed up. Thanks!