Forum Discussion
Prahlad
2 years agoFrequent Visitor
Dynamic Ranking with slicers without summation of values
I have a Table in excel by the name "Compiled" which I have loaded in Power BI. It has the following columns: Month Segment SUPPLIER CODE SUPPLIER NAME DOMAIN Overall Score (Rounded Off) ...
- 2 years ago
I used another two DAX measures:
MAX(f_Data[Overall Score (Rounded Off)]) Rank Score base on Max = RANKX( ALLSELECTED(f_Data[DOMAIN],f_Data[SUPPLIER NAME], f_Data[Segment], f_Data[SUPPLIER CODE]), [MAX Score], ,DESC )The final output was this:
_AAndrade
Resident Rockstar
2 years agoI used another two DAX measures:
MAX(f_Data[Overall Score (Rounded Off)])
Rank Score base on Max =
RANKX(
ALLSELECTED(f_Data[DOMAIN],f_Data[SUPPLIER NAME], f_Data[Segment], f_Data[SUPPLIER CODE]),
[MAX Score],
,DESC
)
The final output was this:
Prahlad
2 years agoFrequent Visitor
It worked! Thanks alot