Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
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!
User | Count |
---|---|
116 | |
73 | |
60 | |
48 | |
48 |
User | Count |
---|---|
171 | |
122 | |
60 | |
59 | |
56 |