Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowGet Fabric Certified for FREE during AI Skills Fest. This week only. Secure your voucher now.
Hi @Killness ,
Please allow me to explain the reason for this issue. When you drill down, the result only displays the selected ZONAMERCADO. Regardless of which ZONAMERCADO you choose, the result is a single record, so its rank will always be 1.
As a solution, I recommend creating a calculated table that links to the original table. In this calculated table, you can create a new column to calculate the rank value and display this rank in the tooltips. This approach ensures that the rank remains accurate, as it won’t be dynamically affected by the drill-down process.
I’ve a test for your reference:
1\My data source:
FOBPRODUCTOR
2\Crate a calculate table:
NewTable =
ADDCOLUMNS(
SUMMARIZE(
ALL(FOBPRODUCTOR),
FOBPRODUCTOR[ZONAMERCADO],
"TotalValue", SUMX(FOBPRODUCTOR, FOBPRODUCTOR[Value])
),
"Ranking", RANKX(
SUMMARIZE(
ALL(FOBPRODUCTOR),
FOBPRODUCTOR[ZONAMERCADO],
"TotalValue", SUMX(FOBPRODUCTOR, FOBPRODUCTOR[Value])
),
[TotalValue], , DESC, DENSE
)
)
3\ model view
4\Tooltips page
5\Result
Best Regards,
Bof
Hi,
Share the download link of the PBI file. Not sure how much i can help but i would like to try.
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 23 | |
| 23 | |
| 21 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 58 | |
| 55 | |
| 42 | |
| 26 | |
| 24 |