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 nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
Hello,
I created 2 matrix in my PBI file - rank of customers by revenue and rank of customers by revenue growth (showing only top 30 revenue generating customers).
I did not put any limit on the revenue matrix but placed 30 limit on revenue growth matrix since there were some very small revenue customers that showed wonky growth rates. Now the strange thing is when I put the interaction between 2 matrix on and click on a customer that exists in the revenue table but wasn't part of the original top 30 list on the revenue growth matrix, the selected customer automatically shows up on the revenue growth matrix. Does PBI forcefully bring that customer as part of top 30 list and show it's relevant rank? If that's the case, then it's a great feautre but want to make sure I am telling the correct story.
Illustrating in the example below
Rank of customers by revenue
| Customer | Rank |
| A | 2 |
| B | 1 |
| C | 3 |
| D | 4 |
Rank of customers by revenue growth (top 3 revenue generating customers only)
| Customer | Rank |
| A | 1 |
| B | 2 |
| C | 3 |
Now if I click on customer "D" on the 1st table, Power BI automatically shows rank of D in table 2 as well even though D wasn't part of top 3 customers.
@jayjani , Are you using all or allselected. Try to use all in rank or TOPN
example
calculate([measure], ,TOPN(3,all(Table[customer]),[measure],DESC), values(Table[customer]))
Thanks for replying. I used "All". Does that mean, it will show the rank of partner "D" on selecting even if D isn't part of top 3 revenue holders?
Hi @jayjani ,
Correct, using All() will remove the filters. Try using ALLSELECTED() instead.
If there is still a problem, it's better to show some sample data to us.
https://community.powerbi.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523
Best Regards,
Jay
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 | |
| 17 | |
| 13 |
| User | Count |
|---|---|
| 58 | |
| 50 | |
| 37 | |
| 29 | |
| 24 |