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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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êsThe Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 9 | |
| 5 | |
| 5 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 24 | |
| 11 | |
| 9 | |
| 6 | |
| 6 |