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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
nknareshkumar21
New Member

PowerBi_Rankfunction_query

Can you please help with below?
This is my table

nknareshkumar21_0-1744087869048.png

Below is the function used

 

nknareshkumar21_0-1744088570190.png

 

Need Help

I am getting 1 for all rows,I need it to show over all rank of the table

Thanks

Naresh

1 ACCEPTED SOLUTION
V-yubandi-msft
Community Support
Community Support

Hi @nknareshkumar21 ,

To resolve this, you can use the RANKX  function inside a calculated column instead. This will calculate the rank across the entire table.

 

 

1.Go to Modeling > New Column in Power BI Desktop.

Use the following DAX formula:

Rank = 
RANKX(
    ALL('Table (2)'),
    'Table (2)'[Revenue],
    ,
    DESC,
    DENSE
)

2. Replace "Your Table Name" with the actual name of your table.

3. Add this Rank column to your visual alongside Country, Product, and Revenue. 

This will correctly assign a unique overall rank to each row based on Revenue.

 

Result:

Vyubandimsft_0-1744129946849.png

 

Vyubandimsft_2-1744130117316.png

 

 

 

If my response solved your query, please mark it as the Accepted solution to help others find it easily.

And if my answer was helpful, I'd really appreciate a 'Kudos'.

 

View solution in original post

5 REPLIES 5
V-yubandi-msft
Community Support
Community Support

Hi @nknareshkumar21 ,

Has your issue been resolved, or do you require any further information? Your feedback is valuable to us. If the solution was effective, please mark it as 'Accepted Solution' to assist other community members experiencing the same issue.

V-yubandi-msft
Community Support
Community Support

Hi @nknareshkumar21 ,

As we haven’t heard back from you, we wanted to kindly follow up to check if the solution we provided for your issue worked for you  or let us know if you need any further assistance?

Your feedback is important to us, Looking forward to your response. 

V-yubandi-msft
Community Support
Community Support

Hi @nknareshkumar21 ,

As we haven’t heard back from you, we wanted to kindly follow up to check if the solution we provided for your issue worked for you  or let us know if you need any further assistance?

Your feedback is important to us, Looking forward to your response. 

V-yubandi-msft
Community Support
Community Support

Hi @nknareshkumar21 ,

To resolve this, you can use the RANKX  function inside a calculated column instead. This will calculate the rank across the entire table.

 

 

1.Go to Modeling > New Column in Power BI Desktop.

Use the following DAX formula:

Rank = 
RANKX(
    ALL('Table (2)'),
    'Table (2)'[Revenue],
    ,
    DESC,
    DENSE
)

2. Replace "Your Table Name" with the actual name of your table.

3. Add this Rank column to your visual alongside Country, Product, and Revenue. 

This will correctly assign a unique overall rank to each row based on Revenue.

 

Result:

Vyubandimsft_0-1744129946849.png

 

Vyubandimsft_2-1744130117316.png

 

 

 

If my response solved your query, please mark it as the Accepted solution to help others find it easily.

And if my answer was helpful, I'd really appreciate a 'Kudos'.

 

johnt75
Super User
Super User

When you calculate the sum you need to force context transition, so that the sum is calculated for the correct combination of country and product

Rank = RANKX( ALL('Table'), CALCULATE( SUM('Table'[Revenue]) ),,DESC, Dense )

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.