Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Como se podría hacer el cálculo del acumulado, que se acumula desde el mayor numeros de ventas hasta el menor del total general, por favor muchas gracias, sin seguir el orden de otra columna y seguir el orden de Cantidad de ventas de mayor a menor, pero Recien se puede saber el mayor cuando se resumen los datos en una matriz.
Solved! Go to Solution.
Hi @Keepin ,
Please have a try.
Accumulated Sales =
VAR _Rank = RANKX ( ALL ( Sales ), Sales[Sales Amount] )
VAR _TopN = 5
RETURN
IF ( _Rank <= _TopN,
CALCULATE (
SUM ( Sales[Sales Amount] ),
FILTER (
ALL ( Sales ),
RANKX ( ALL ( Sales ), Sales[Sales Amount] ) <= _Rank
)
)
)
How to Get Your Question Answered Quickly
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Community Support Team _ Rongtie
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Keepin ,
Please have a try.
Accumulated Sales =
VAR _Rank = RANKX ( ALL ( Sales ), Sales[Sales Amount] )
VAR _TopN = 5
RETURN
IF ( _Rank <= _TopN,
CALCULATE (
SUM ( Sales[Sales Amount] ),
FILTER (
ALL ( Sales ),
RANKX ( ALL ( Sales ), Sales[Sales Amount] ) <= _Rank
)
)
)
How to Get Your Question Answered Quickly
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Community Support Team _ Rongtie
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Muchas gracias Bro
Please use a quick measure for that - running total.
User | Count |
---|---|
84 | |
77 | |
64 | |
51 | |
46 |
User | Count |
---|---|
101 | |
43 | |
39 | |
39 | |
36 |