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

Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.

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
Anonymous
Not applicable

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
Anonymous
Not applicable

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
PBIApril_Carousel

Power BI Monthly Update - April 2025

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

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

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