Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

CALCULATE(SUM) con filtros

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.

kramer_0-1637680539092.png

 Tengo esta formula DAX que sirve para sumar los SalVal del último periodo pero no por cada bolsillo.. 

SaldoMes = CALCULATE( SUM(Saldos[SalVal]), FILTER(Saldos,Saldos[Periodo] = MAX(Saldos[Periodo]) && Saldos[BolCod] = DISTINCT(Saldos[BolCod] )))



Espero me puedan ayudar

 

Gracias.

 

1 ACCEPTED SOLUTION
v-stephen-msft
Community Support
Community Support

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.

vstephenmsft_0-1637891175462.png

 

 

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.

 

View solution in original post

2 REPLIES 2
v-stephen-msft
Community Support
Community Support

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.

vstephenmsft_0-1637891175462.png

 

 

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.

 

Anonymous
Not applicable

This is exactly what I needed, thank you so much!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.