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
I have a sales table matrix grouped by customer and article, this table is a TOP 2 sales
Does anyone know how I can show the total sales of all customers who are not part of the TOP 2 in a separate line from the top?
Table
Solved! Go to Solution.
Hi @ngomes ,
Refer the following sample:
First ,create rank column:
rank = RANKX(FILTER('Table','Table'[TypeA]=EARLIER('Table'[TypeA])),'Table'[Value])
Then create the below measure:
test = IF(HASONEVALUE('Table'[TypeB]),MAX('Table'[Value]),CALCULATE(SUM('Table'[Value]),FILTER(ALL('Table'),'Table'[TypeA]=MAX('Table'[TypeA])&&'Table'[rank]>2)))
Create visual:
You could adjust base on your table and need.
Did I answer your question? Mark my post as a solution!
Best Regards
Lucien
Hi @ngomes ,
Refer the following sample:
First ,create rank column:
rank = RANKX(FILTER('Table','Table'[TypeA]=EARLIER('Table'[TypeA])),'Table'[Value])
Then create the below measure:
test = IF(HASONEVALUE('Table'[TypeB]),MAX('Table'[Value]),CALCULATE(SUM('Table'[Value]),FILTER(ALL('Table'),'Table'[TypeA]=MAX('Table'[TypeA])&&'Table'[rank]>2)))
Create visual:
You could adjust base on your table and need.
Did I answer your question? Mark my post as a solution!
Best Regards
Lucien
hello James
I know the video
This example does not have groups and what I am asking is how to obtain the value of the remaining customers knowing that I have the group customers articles/services
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 |
|---|---|
| 43 | |
| 35 | |
| 35 | |
| 21 | |
| 15 |
| User | Count |
|---|---|
| 63 | |
| 58 | |
| 28 | |
| 27 | |
| 25 |