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
adnanarain
Helper V
Helper V

Rank Measure with ID and Date

Hi All,

Below is the sample data:

IDDateQuantity
101/01/20      2
101/02/20      3
101/03/20      1
201/01/20      3
201/02/20      7
201/03/20      9
301/04/20      3
301/05/20      1
301/06/20      2

 

below is the output I need: Date Slicer dates selected from 1/2/2020 to 1/6/2020

 

IDDateQuantity  Rank
101/02/20      3   1
101/03/20      1   2
201/02/20      7   1
201/03/20      9   2
301/04/20      3   1
301/05/20      1   2
301/06/20      2   3

 

I want to create a measure to display rank within ID category and rank start from the oldest date selected through a slicer.

1 ACCEPTED SOLUTION

 

@adnanarain 

Try this one:

Measure = RANKX(FILTER(ALLSELECTED('Table'),[ID]=MAX('Table'[ID])),CALCULATE(SUM([Date])),,ASC,Dense)

 rank id and date.JPG

Paul Zheng _ Community Support Team
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

4 REPLIES 4
amitchandak
Super User
Super User

@adnanarain , try like

 

rankx(allselected(Table[Date]), calculate(sum(Table[Quantity])),,desc,dense)

 

Please find the attached file after the signature.

 

For Rank Refer these links
https://radacad.com/how-to-use-rankx-in-dax-part-2-of-3-calculated-measures

adnanarain_0-1600842270235.png

@amitchandak This is what I want.

 

@adnanarain 

Try this one:

Measure = RANKX(FILTER(ALLSELECTED('Table'),[ID]=MAX('Table'[ID])),CALCULATE(SUM([Date])),,ASC,Dense)

 rank id and date.JPG

Paul Zheng _ Community Support Team
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thanks, Amit for your reply. This ranking is based on date and quantity so basically I need rank based on ID and date no matter what is the quantity, so for example, if we have ID 1, the date is 1st January and the quantity is 5 and in 2nd row, we have ID 1, date 2nd January and quantity is 8 then the rank will be 1 for 1st January and 2 for 2nd January. No matter what is the quantity.

I have tried to clear my point here I hope is clear now.

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.