Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
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êsMarch 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
22 | |
12 | |
10 | |
10 | |
8 |
User | Count |
---|---|
16 | |
15 | |
14 | |
12 | |
10 |