Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.
Hey guys,
I have performance issues with the Rankx function.
Currently, i use the rankx function for a dynamic top n selection for a matrix with a slicer.
This works fine for a table with less than 200 customers.
However, if i use my table with 15000 customers, the matrix will not load.
I would be really glad for suggestions or workarounds.
The DAX for my rankx function is the following:
Rank__Customer = RANKX(ALL(Customer[CustomerName] ),[TotalSales])
Solved! Go to Solution.
Hi @schaetzles ,
If the customer table only has the customername column.
new table = distinct(cusotmer[customername ])
If not, it is recommended to create a new table with only customername column, then link the new table with the customer table, and replace the customer table in your formula with the new table.
Rank__Customer = RANKX(ALL(new table[CustomerName] ),[TotalSales])
Best Regards,
Jay
Hi @schaetzles ,
If the customer table only has the customername column.
new table = distinct(cusotmer[customername ])
If not, it is recommended to create a new table with only customername column, then link the new table with the customer table, and replace the customer table in your formula with the new table.
Rank__Customer = RANKX(ALL(new table[CustomerName] ),[TotalSales])
Best Regards,
Jay
@schaetzles , if you are doing dynamic TOPN, then use TOPN
TOPN: https://youtu.be/QIVEFp-QiOk
Also, is total sales is a simple measure?
Thanks for the answer!
Total Sales is just a simple measure.
Check out the May 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
74 | |
72 | |
71 | |
50 | |
45 |
User | Count |
---|---|
46 | |
38 | |
29 | |
28 | |
28 |