Forum Discussion

devesqdeves's avatar
devesqdeves
Icon for Helper II rankHelper II
6 years ago
Solved

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 ...
  • MFelix's avatar
    MFelix
    6 years ago

    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.