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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
devesqdeves
Helper II
Helper II

Rankx + Rand() not working

Hello , i am new  to the community and kinda new to power bi .

I am trying to rank a column(client) based on a measure that i created ( hc fac value) , and to that measure i added rand(hc fac value rand) , to not have any equal values, but the rank is showing as if it exists equal values , i am really struggling..

Can someone help me out please?

devesqdeves_0-1600166936188.png

 

1 ACCEPTED SOLUTION

Hi @devesqdeves ,

 

I assume that you have an ID for each of your client if not please create one with the client number (must be unique values) then add the following measure:

Rank_Without_Duplicates =
IF (
    HASONEVALUE ( Client[Cliente] )
        && [HC FAC Value] > 0;
    RANKX (
        ALL ( Client[Cliente] );
         (
            CALCULATE ( [HC FAC Value] )
                + INT ( CALCULATE ( MIN ( Client[Client ID] ) ) ) / 100000
        )
    )
)

 

Check result attach.

 

 


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



View solution in original post

5 REPLIES 5
amitchandak
Super User
Super User

@devesqdeves , You have to add Rand() in Rank (Measure Rank)

 

Rank(Table,formula) +rank()/1000

Thanks for the input ! But it is not working yet :c

@amitchandak 

@MFelix 

it shows like this

 

my rank measure =

IF (
HASONEVALUE ( Client[Cliente] ) && [HC FAC Value]>0,
RANKX(All(Client[Cliente]),[HC FAC Value],,DESC) + RAND()/1000)
 
already tried with dense and skip and still not working :s
 
it should be 1,2,3,4,5,6,7,8,9 etc , but its still repeating, i dont know what to do , need heelp plz
 

devesqdeves_0-1600168510653.png

 

Hi @devesqdeves ,

 

I assume that you have an ID for each of your client if not please create one with the client number (must be unique values) then add the following measure:

Rank_Without_Duplicates =
IF (
    HASONEVALUE ( Client[Cliente] )
        && [HC FAC Value] > 0;
    RANKX (
        ALL ( Client[Cliente] );
         (
            CALCULATE ( [HC FAC Value] )
                + INT ( CALCULATE ( MIN ( Client[Client ID] ) ) ) / 100000
        )
    )
)

 

Check result attach.

 

 


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



It worked !! Thanks !!

Hi @devesqdeves ,

 

Don't forget to mark the correct answer to help others.


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors