Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi, I have the below scenario where I want to calculate rank of the materials based on the Date, ID and Item in ascending order.
And Each time a slicer filter is selected, the rank must change dynamically based on the selection.
Before Filter :
| Material | ID | Item | Date | Quantity | Rank |
| Mobile | 103 | 1 | 01/01/2021 | 2 | 1 |
| Mobile | 103 | 2 | 01/01/2021 | 16 | 2 |
| Mobile | 104 | 6 | 05/01/2021 | 8 | 3 |
| TV | 100 | 1 | 01/01/2021 | 10 | 1 |
| TV | 101 | 3 | 12/01/2021 | 5 | 2 |
| TV | 102 | 6 | 16/01/2021 | 15 | 3 |
After Date Selection between 10/01/2021 to 20/01/2021 :
| Material | ID | Item | Date | Quantity | Rank |
| TV | 101 | 3 | 12/01/2021 | 5 | 1 |
| TV | 102 | 6 | 16/01/2021 | 15 | 2 |
Any help would be appreciated. Thanks in advance.
Solved! Go to Solution.
@AishwaryaS , Try a measure like
calculate(Count(Table[Quantity]), filter(allselected(Table), Table[Material] = max(Table[Material]) && Table[Date] <= max(Table[Date])))
@AishwaryaS , Try a measure like
calculate(Count(Table[Quantity]), filter(allselected(Table), Table[Material] = max(Table[Material]) && Table[Date] <= max(Table[Date])))
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 9 | |
| 7 | |
| 6 | |
| 6 | |
| 5 |
| User | Count |
|---|---|
| 24 | |
| 21 | |
| 18 | |
| 14 | |
| 14 |