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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

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
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

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

August Carousel

Fabric Community Update - August 2024

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