Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Indexing a Measure

Hello!

 

I have a meaure called CL which has distinct vaues to a respective Simulation Number.

 

Simulation NumberCL Measure
32300
33213

 

I have another table called Index which has an Index Column with values 1 - 100000. I hope to link my measure CL to the Index Table in an Ascending Order. So that the lowest value of CL Measure is linked to Index 1 and so on.

 

IndexCL MeasureSimulation Number
121333
230032

 

Kindly help if possible.

 

Thank you.

 

Jimmy801 parry2k amitchandak sanalytics Anonymous 

  • Anonymous's avatar
    Anonymous
    5 years ago

    Hi Anonymous ,

     

    Measure is dynamic, and the table is fixed, so the Measure cannot establish a relationship with the table.

    You can use the RANKX function.

    Index = RANKX(ALL('Table'),CALCULATE([CL Measure]),,ASC,Dense)

     

    Best Regards,

    Stephen Tao

     

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

3 Replies

  • Anonymous , Based on what I got.

    With a measure like this you can use index in visual or as filter

     

    sumx(filter(values(Simulation Number),Table[Measure] = Table2[Index]),[Measure])

     

    As of now I treated as segmentation - https://youtu.be/CuczXPj0N-k

    • Anonymous's avatar
      Anonymous
      Not applicable

      Hello Amit, thank you for taking the time to reply.

       

      I may be missing something, but was not able to understand your formula. I do not understand what Table[Measure] refers to.

       

      Please clarify if possible.

       

      Thanks

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi Anonymous ,

     

    Measure is dynamic, and the table is fixed, so the Measure cannot establish a relationship with the table.

    You can use the RANKX function.

    Index = RANKX(ALL('Table'),CALCULATE([CL Measure]),,ASC,Dense)

     

    Best Regards,

    Stephen Tao

     

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