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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
OsmarBR7
Regular Visitor

Sum filter

 

Hola, tengo la siguiente duda, espero me puedan ayudar.

 

Tengo la siguiente tabla, y debo hacer los calculos en PowerBi con Dax y soy nuevo en la herramienta.

La formula es la siguiente:

 

=E2/(E2+E8+E14)

 

 

image.png

 

 

Revisando los foros me parece que debo unar un calculate pero me calcula todas las  filas.

 

Espero me puedan ayudar

2 REPLIES 2
v-yuta-msft
Community Support
Community Support

Hi OsmarBR7,

 

To achieve your requirement, create a calculate column using DAX formula like pattern below:

Result = 
VAR Total = CALCULATE(SUM(Table1[Value]), FILTER(Table1, Table1[Index] = 1 || Table1[Index] = 8 || Table1[Index] = 14))
RETURN
IF(Table1[Index] = 1 || Table1[Index] = 8 || Table1[Index] = 14, Table1[Value] / Total, BLANK())

Capture.PNG 

 

Regards,

Jimmy Tao

Anonymous
Not applicable

No estoy 100% seguro, pero creo que desea agregar solo los valores para los cuales 'Valor' es '30'. No solo debes usar calcular, sino también usar un filtro con él. Prueba esta fórmula.

 

 No estoy 100% seguro, pero creo que desea agregar solo los valores para los cuales 'Valor' es '30'.
No solo debes usar calcular, sino también usar un filtro con él. Prueba esta fórmula.

 

ColumnX =

Var Denominator = CALCULATE(SUM('Table'[Peso Tipo]),FILTER('Table','Table'[Valor]=EARLIER('Table'[Valor])))
Var Numerator = 'Table'[Valor]
RETURN
DIVIDE(Numerator,Denominator,0)

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors