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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
RoxFreyja191
Regular Visitor

RANX duplicate rank values

Hi All,

 

I am new to Power Bi (month 1).

 

I am trying to rank client spend. The table with the value of each purchased line does not contain the client name, but it is connected with a relationship on the Order ID. 

 

Here is what I have done:

 

Ranking = RANKX(
CROSSJOIN(
ALL(Organizations[Organisation Name Short]),ALL(SalesOrderLines[omlExtendedDiscountBase])
),
[Total Sales Orders]
)

 

The results almost work, except that there are a few duplicate ranks even though the sales value is not the same.

 

RoxFreyja191_0-1634980093485.png

 

Note rank 3 is used twice.

 

I would appreciate any advice

 

 

 

 

 

1 ACCEPTED SOLUTION
v-robertq-msft
Community Support
Community Support

Hi, 

According to your description, I can roughly understand your requirement, I think you can try to create a new measure using the Rand() function to assist your original sorting in the measure, you can try my steps:

Create a new measure:

Randome = RAND()

Then change the measure Ranking like this:

Ranking =

RANKX(
CROSSJOIN(
ALL(Organizations[Organisation Name Short]),ALL(SalesOrderLines[omlExtendedDiscountBase])
),
[Total Sales Orders] + [Randome]
)

And you can get what you want, like this:

 

Thank you very much!

 

Best Regards,

Community Support Team _Robert Qin

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

2 REPLIES 2
v-robertq-msft
Community Support
Community Support

Hi, 

According to your description, I can roughly understand your requirement, I think you can try to create a new measure using the Rand() function to assist your original sorting in the measure, you can try my steps:

Create a new measure:

Randome = RAND()

Then change the measure Ranking like this:

Ranking =

RANKX(
CROSSJOIN(
ALL(Organizations[Organisation Name Short]),ALL(SalesOrderLines[omlExtendedDiscountBase])
),
[Total Sales Orders] + [Randome]
)

And you can get what you want, like this:

 

Thank you very much!

 

Best Regards,

Community Support Team _Robert Qin

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

RoxFreyja191
Regular Visitor

Sorry need to clarify. 

 

The calculation of values takes place in Table A (No Org names) it connects with a sales order ID to Table B which has a short version of the customer ID which connect to table C (Organisations) that has the category name I want to use.

 

So the relationship is not directly between table A (sales lines) and C (Organisations), its connected through a table B.

 

 

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

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 community update carousel

Fabric Community Update - June 2025

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