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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
MONTENEGRO
Frequent Visitor

Suma filtrada

Necesito sumar los el presupuesto total del periodo, pero que solo respete el segmentador periodo e ignore los demas segmentadores como el mes.

MONTENEGRO_0-1664823730663.png

 

Campos de tabla calendario

MONTENEGRO_1-1664823859687.png

 

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

Hi, @MONTENEGRO 

If there is no relationship created between your calendar table and Resultados Operaciones table, you can try to calculate total budget with measures like the following.

 

Presupuesto anual =
CALCULATE (
    SUM ( 'Resultados Operaciones'[Presupuesto] ),
    FILTER (
        'Resultados Operaciones',
        'Resultados Operaciones'[Fecha] IN VALUES ( Calendario[Fecha] )
    )
)

 

Presupuesto anual2 = SUMX(ALLEXCEPT(Calendario,Calendario[Periodo]),[Presupuesto anual])

Hope this could help.

 

Best Regards,
Community Support Team _ Eason

View solution in original post

1 REPLY 1
v-easonf-msft
Community Support
Community Support

Hi, @MONTENEGRO 

If there is no relationship created between your calendar table and Resultados Operaciones table, you can try to calculate total budget with measures like the following.

 

Presupuesto anual =
CALCULATE (
    SUM ( 'Resultados Operaciones'[Presupuesto] ),
    FILTER (
        'Resultados Operaciones',
        'Resultados Operaciones'[Fecha] IN VALUES ( Calendario[Fecha] )
    )
)

 

Presupuesto anual2 = SUMX(ALLEXCEPT(Calendario,Calendario[Periodo]),[Presupuesto anual])

Hope this could help.

 

Best Regards,
Community Support Team _ Eason

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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