Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Ranked Index Skipping Numbers

Hi All,

 

I currently have a table with an index column and 2 calculated columns based off of it. The current way I have the formulas written for the calculated columns is: 

RI - Sav = if(Containers[Destination]<>"Sav",blank(),RANKX(Containers,Containers[Received Index],,ASC))
RI - Per = if(Containers[Destination]<>"Per",blank(),RANKX(Containers,Containers[Received Index],,ASC))
 
This returns values as follows:
 
DestinationReceived IndexRI - SavRI - Per
Sav11 
Sav22 
Sav33 
Sav44 
Per5 5
Per6 6
Sav77 
Per8 8

 

I would like the table to look as follows:

DestinationReceived IndexRI - SavRI - Per
Sav11 
Sav22 
Sav33 
Sav44 
Per5 1
Per6 2
Sav75 
Per8 3

 

Could someone please help me understand how my RI calculated columns need to be modified in order to make this work?

 

Thanks in advance!

  • Hi Anonymous ,

    Test the following dax:

    RI - Sav2 = if(Containers[Destination]="Sav",RANKX(Filter(Containers,Containers[Destination] = "Sav"),Containers[Received Index],,ASC))
    RI - Per = if(Containers[Destination]="Per",RANKX(Filter(Containers,Containers[Destination] = "Per"),Containers[Received Index],,ASC))

    Final get the below:

     

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


    Best Regards

    Lucien

2 Replies

  • Anonymous here it is :

     

    RI - Sav = if(Containers[Destination]="Sav",RANKX(Filter(Containers,Containers[Destination] = "Sav"),Containers[Received Index],,ASC))
    
    RI - Per = if(Containers[Destination]="Per",blank(),RANKX(Filter(Containers,Containers[Destination] = "Per"),Containers[Received Index],,ASC))

     

     

    Follow us on LinkedIn

     

    Check my latest blog post The Power of Using Calculation Groups with Inactive Relationships (Part 1) (perytus.com) I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

     

    Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.

     

  • v-luwang-msft's avatar
    v-luwang-msft
    Community Support

    Hi Anonymous ,

    Test the following dax:

    RI - Sav2 = if(Containers[Destination]="Sav",RANKX(Filter(Containers,Containers[Destination] = "Sav"),Containers[Received Index],,ASC))
    RI - Per = if(Containers[Destination]="Per",RANKX(Filter(Containers,Containers[Destination] = "Per"),Containers[Received Index],,ASC))

    Final get the below:

     

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


    Best Regards

    Lucien