The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Buen día, estoy intentando realizar la suma del campo SalVal teniendo en cuenta el campo periodo y el campo BolCod, el campo periodo siempre sumaré el último, pero no sé como sumar todos los SalVal por bolsillo en una sola columna.
Tengo esta formula DAX que sirve para sumar los SalVal del último periodo pero no por cada bolsillo..
Espero me puedan ayudar
Gracias.
Solved! Go to Solution.
Hi @Anonymous ,
Do you want to group by [BolCod] and [periodo] to calculate the sum of [SalVal]?
Try this
saldomes = CALCULATE(SUM('Table'[SalVal]),ALLEXCEPT('Table','Table'[BolCod],'Table'[periodo]))
The ALLEXCEPT function removes all context filters in the table except filters that have been applied to the specified columns.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
Do you want to group by [BolCod] and [periodo] to calculate the sum of [SalVal]?
Try this
saldomes = CALCULATE(SUM('Table'[SalVal]),ALLEXCEPT('Table','Table'[BolCod],'Table'[periodo]))
The ALLEXCEPT function removes all context filters in the table except filters that have been applied to the specified columns.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
This is exactly what I needed, thank you so much!
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
108 | |
82 | |
77 | |
46 | |
39 |
User | Count |
---|---|
137 | |
108 | |
69 | |
64 | |
53 |