Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

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.

Reply
bdog1971
Regular Visitor

How to add new columns and then add a ranking based on another columns values.

All I need some help with adding a few columns and then have a ranked value based on another column.  

 

Here is the current data.  

Project NameModel ScoreStrategy Score
Project 1112132
Project 2109124
Project 35050
Project 4104119
Project 56777
Project 6139174
Project 7100120
Project 8127147
Project 986106
Project 10103118

 

I am trying to figure out how to get the rankings for the Model Score Ranking and Strategy Score Ranking from the Model Score and Strategy Score columns.  Below is an example I typed in but I have over a thousand rows. 

 

Project NameModel ScoreStrategy ScoreModel Score RankingStrategy Score Ranking
Project 111213288
Project 210912477
Project 3505011
Project 410411965
Project 5677722
Project 61391741010
Project 710012046
Project 812714799
Project 98610633
Project 1010311854

 

Thanks again for the help. 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi  @bdog1971 ,

Here are the steps you can follow:

1. Create calculated column.

Model Score Ranking = RANKX('Table','Table'[Model Score],,ASC)
Strategy Score Ranking = RANKX('Table','Table'[Strategy Score],,ASC)

2. Result:

vyangliumsft_0-1639444948433.png

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi  @bdog1971 ,

Here are the steps you can follow:

1. Create calculated column.

Model Score Ranking = RANKX('Table','Table'[Model Score],,ASC)
Strategy Score Ranking = RANKX('Table','Table'[Strategy Score],,ASC)

2. Result:

vyangliumsft_0-1639444948433.png

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors