Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi all,
i have a simple table like below and i need to add an index based on descending order of Sales
Salesmen Sales
George 10
Ana 50
Jane 30
and need
Salesmen Sales Index
George 10 3
Ana 50 1
Jane 30 2
can you help me with this?
Thanks,
Cosmin
Solved! Go to Solution.
@cosminc Please try this as a New Column
Index = RANKX(Test294Rank,Test294Rank[Sales],,DESC)
Proud to be a PBI Community Champion
@cosminc Please try this as a New Column
Index = RANKX(Test294Rank,Test294Rank[Sales],,DESC)
Proud to be a PBI Community Champion
Thanks!
Cosmin