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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi all,
I have a calculated column to which I would like to allot index from the highest to the lowest.
For eg:
This is my table.
I would want EDU 1000 = index 1
250 = 2
112 = 3 and so on..
Can I please know how to achieve that in PowerBI?
Any help is appreciated!
Thank you!
Megha
Solved! Go to Solution.
@Anonymous , Rank in DAX
new column =
Rankx(Table, [EDU],,desc,dense)