Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Hi guys! I hope they are fine!
I need your help!
I set up a virtual table (as shown in the image below) that shows the customer code and the total sum of sales grouped by customer.
But I have difficulty working with virtual table. I'm trying to do two measurements:
a) total number of customers with sales greater than 30k
b) sum the total sales of the top 5 customers
Can you help me? Thank you very much in advance!
I used this script for creat my virtual table
SUMMARIZE (
TABLE,
TABLE[CODE],
"SALES_TOTAL", SUM ( TABLE[SALES] )
)
This code works in Dax Studio, but in Power BI occorr erro, in Dax Studio it's possible see top 5...
TOPN (
5,
ADDCOLUMNS (
VALUES ( TABLE[CODE] ),
"TOTAL", CALCULATE ( SUM ( TABLE[SALES_TOTAL] ) )
),
[TOTAL], DESC
)
Solved! Go to Solution.
Hi,
I am not sure whether I understood your question correctly, but I tried to create a sample pbix file like below.
Please check the below picture and the attached pbix file.
I hope the below can provide some ideas on how to create a solution for your data model.
Sales measure: =
SUM( 'Table'[Sales] )
Customer count over 30K: =
COUNTROWS ( FILTER ( DISTINCT ( 'Table'[Code] ), [Sales measure:] >= 30000 ) )
Top 5 customers sales: =
CALCULATE (
[Sales measure:],
KEEPFILTERS ( TOPN ( 5, ALL ( 'Table'[Code] ), [Sales measure:], DESC ) )
)
Hi,
I am not sure whether I understood your question correctly, but I tried to create a sample pbix file like below.
Please check the below picture and the attached pbix file.
I hope the below can provide some ideas on how to create a solution for your data model.
Sales measure: =
SUM( 'Table'[Sales] )
Customer count over 30K: =
COUNTROWS ( FILTER ( DISTINCT ( 'Table'[Code] ), [Sales measure:] >= 30000 ) )
Top 5 customers sales: =
CALCULATE (
[Sales measure:],
KEEPFILTERS ( TOPN ( 5, ALL ( 'Table'[Code] ), [Sales measure:], DESC ) )
)
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 64 | |
| 53 | |
| 42 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 121 | |
| 106 | |
| 47 | |
| 30 | |
| 24 |