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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello everyone!
I need a help. I did a ranking measure that from of other measure (F_Total), but in fact i need to change this ranking measure to column, to use it as category in my graph later on.
My ranking measure is:
Solved! Go to Solution.
Resolved with measure!
First, i created a index measure, based on ranking that already works, where i can to set the number of the index that i want to show at waterfall graph.
Hi @larcaris ,
You need a calculated column as below:
Rank =
RANKX (
CALCULATETABLE ( DISTINCT ( 'Table'[Category] ), ALLSELECTED ( 'Table' ) ),
CALCULATE (
SUM ( 'Table'[F-Sales] ),
FILTER (
ALLSELECTED ( 'Table'[F-Sales] ),
'Table'[Category] = EARLIER ( 'Table'[Category] )
)
),,
ASC
)
Then you will see:
For the related .pbix file,pls click here.
Best Regards,
Kelly
Hello @v-kelly-msft Kelly!! You are so helpful!.
But i need to open the problem. In my real case, the F-Sales is a measure (that was migrated from excel). My goal is to do a column ranking, and later on a column with TOP5 os these ranking.
I will send the pbix file with notations and example of my real case, i would be glad your help or suggestion, because im in the problem for 1 month :((
For pbix, click here !
Thank you so much!
Resolved with measure!
First, i created a index measure, based on ranking that already works, where i can to set the number of the index that i want to show at waterfall graph.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 104 | |
| 81 | |
| 66 | |
| 50 | |
| 45 |