Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Dear All ;
I need your support about below issue , let me explain pls.
I have a table visual as follows. You can see the customer names in the leftmost column of the visual, the amounts in the middle column, and the percentage of a customer's amount to the total amount in the rightmost column. The customer order in the table is listed from the highest amount to the lowest amount. My request from you is this, I want to show the first 5 customers in this table and show the data of the remaining customers in a single row. How can I achieve this? You can also see the table on the right as an example. Thank you in advance for your valuable support.
Solved! Go to Solution.
Hi @carpe79 ,
The table data is shown below:
Please follow these steps:
1. Use the following DAX expression to create a column
Column = IF(RANKX('Table1',[Value],[Value],DESC) <=5,[Customer],"Others")2. Use the following DAX expression to create a measure name ‘SumValue’
SumValue = SUMX('Table1',[Value])3. Use the following DAX expression to create a measure name ‘SumPercentage’
SumPercentage = SUMX('Table1','Table1'[Percentage])4. Final output
Best Regards,
Wenbin Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @carpe79 ,
The table data is shown below:
Please follow these steps:
1. Use the following DAX expression to create a column
Column = IF(RANKX('Table1',[Value],[Value],DESC) <=5,[Customer],"Others")2. Use the following DAX expression to create a measure name ‘SumValue’
SumValue = SUMX('Table1',[Value])3. Use the following DAX expression to create a measure name ‘SumPercentage’
SumPercentage = SUMX('Table1','Table1'[Percentage])4. Final output
Best Regards,
Wenbin Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 45 | |
| 38 | |
| 34 | |
| 21 | |
| 17 |
| User | Count |
|---|---|
| 66 | |
| 64 | |
| 31 | |
| 26 | |
| 26 |