Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Buenos dias,
Requiero hacer una medica acumulada de los clientes con mayor ventas al menor, tienen idea de como hacerlo?
Hi @Anonymous ,
Create a ranking table with the following code:
Ranking = GENERATESERIES(1;100;1)
Now create the following 4 measures:
Ranking = SELECTEDVALUE(Ranking[Ranking Index])
Top Customers =
CALCULATE (
SELECTEDVALUE ( 'Table'[Customer]; BLANK () );
FILTER (
VALUES ( 'Table'[Customer] );
RANKX ( ALL ( 'Table' ); [Total Sales] ) = [Ranking]
)
)
Customer Sales =
CALCULATE (
[Total Sales];
FILTER ( VALUES ( 'Table'[Customer] ); 'Table'[Customer] = [Top Customers] )
)
Cumulative Totals =
VAR CurrentRank =
RANKX ( ALL ( 'Table' ); [Total Sales];; DESC )
VAR IndexRank = [Ranking]
RETURN
IF (
[Top Customers] = BLANK ();
BLANK ();
SUMX (
FILTER (
SUMMARIZE (
'Table';
'Table'[Customer];
"@Sales"; [Total Sales];
"@Ranking"; RANKX ( ALL ( 'Table' ); [Total Sales] )
);
[@Ranking] <= IndexRank
);
[@Sales]
)
)
Now just add the values to a table visualization.
Check PBIX file attach.
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsAdvance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 7 | |
| 6 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 11 | |
| 8 | |
| 8 | |
| 8 |