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.
I have data simillar to below table.
Category | pair | Value |
A | B | 10 |
A | C | 15 |
B | D | 20 |
B | A | 25 |
I need a rank column simillar ranking as per category and value. Below O/p.
Category | pair | Value | Rank |
A | B | 10 | 1 |
A | C | 15 | 2 |
B | D | 25 | 2 |
B | A | 20 | 1 |
I have tried Rankx but I am not getting the expected o/p. Any help is appreciated. Thanks.
Solved! Go to Solution.
Hi,
try this in a calculated column:
If I answered your question, please mark my post as solution, Appreciate your Kudos 👍
Works!!! Thanks a lot.
Hi,
try this in a calculated column:
If I answered your question, please mark my post as solution, Appreciate your Kudos 👍