Forum Discussion
sdrfghjkl
3 years agoFrequent Visitor
Dynamic Ranking measure and a card Visual
Hi, I need some help with creating Dynamic Ranking and extracting a rank based on a particular column as a filter. My table has the following columns Date brand brand_type category ...
v-jianboli-msft
3 years agoCommunity Support
Hi sdrfghjkl ,
Please try:
Rank =
VAR _a =
ADDCOLUMNS (
ALL ( Customer_Feedback ),
"Rank",
RANKX (
ALL ( Customer_Feedback[brand] ),
CALCULATE (
AVERAGE ( Customer_Feedback[rating] ),
FILTER (
ALL ( 'Customer_Feedback' ),
[brand] = EARLIER ( Customer_Feedback[brand] )
)
),
,
DESC,
DENSE
)
)
RETURN
MAXX (
FILTER (
_a,
[brand_type] = "Own"
&& [customer] = SELECTEDVALUE ( Customer_Feedback[customer] )
),
[Rank]
)
Final output:
Best Regards,
Jianbo Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.