Forum Discussion
Anonymous
2 years agoNot applicable
URGENT!! Ranking measure not working.
Hello Power BI community!Preview Can you help me with the below ranking code? This code is giving me the same ranking for different % of search order columns: SortingOrderSearchOrder_Single...
- 2 years ago
Anonymous
I was wondering why cannot you use this patternRANKX( ALLSELECTED('df_Search Order (First)'[Search Order (First)]) , [Category_Occasion_SingleSelect%])If the post helps please give a thumbs up
If it solves your issue, please accept it as the solution to help the other members find it more quickly.
Tharun
- 2 years ago
Hi,
I revised your measure to:
Ranking SingleSelect = RANKX(ALLSELECTED('df_Search Order (First)'[Search Order (First)]), [Category_Occasion_SingleSelect%], , DESC, Dense)This also works
Ranking SingleSelect 1 = RANK(DENSE,SUMMARIZE(ALLSELECTED('df_Search Order (First)'),'df_Search Order (First)'[Search Order (First)],"A",[Category_Occasion_SingleSelect%]),orderby([A],DESC))Hope this helps.
Ashish_Mathur
Super User
2 years agoHi,
I revised your measure to:
Ranking SingleSelect =
RANKX(ALLSELECTED('df_Search Order (First)'[Search Order (First)]), [Category_Occasion_SingleSelect%], , DESC, Dense)
This also works
Ranking SingleSelect 1 =
RANK(DENSE,SUMMARIZE(ALLSELECTED('df_Search Order (First)'),'df_Search Order (First)'[Search Order (First)],"A",[Category_Occasion_SingleSelect%]),orderby([A],DESC))
Hope this helps.
Anonymous
2 years agoNot applicable
Thanks a lot Ashish_Mathur for the help!