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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Anonymous
Not applicable

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 @v-rzhou-msft 

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

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)

19.png

 

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.

View solution in original post

3 REPLIES 3
v-stephen-msft
Community Support
Community Support

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)

19.png

 

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.

amitchandak
Super User
Super User

@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
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

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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