Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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.
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
105 | |
99 | |
99 | |
38 | |
37 |
User | Count |
---|---|
157 | |
121 | |
73 | |
73 | |
63 |