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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
WilliamForero
Helper I
Helper I

Suma periodo anterior

Hola comunidad,

 

no encuentro solucion a un inconveniente que se me presento, tengo que realizar un indicador para el cual tengo que tener el valor de una variable PE_STEGE  y compararla con el resultado de esa misma variable en el periodo anterior

 

WilliamForero_1-1665005665931.png

cree la medida de gasto pero no me la esta mostrando en el renglo que quisiera. 

 

GASTO =
VAR IFRSPREVIUOS = CALCULATE(SUM(IFRS_vwREPORTE_PROVISION_IFRS[PE_STAGE]),FILTER(IFRS_vwREPORTE_PROVISION_IFRS,DATEADD(IFRS_vwREPORTE_PROVISION_IFRS[Fecha_corte].[Date],-3,MONTH)))
RETURN IFRSPREVIUOS
 
agradezco sus aportes
1 ACCEPTED SOLUTION
v-cgao-msft
Community Support
Community Support

Hi @WilliamForero ,

 

Please try this measure:

GASTO =
VAR _DATE =
    MAX ( IFRS_vwREPORTE_PROVISION_IFRS[Fecha_corte] )
VAR IFRSPREVIUOS =
    CALCULATE (
        SUM ( IFRS_vwREPORTE_PROVISION_IFRS[PE_STAGE] ),
        FILTER (
            ALL ( IFRS_vwREPORTE_PROVISION_IFRS[Fecha_corte] ),
            EDATE ( IFRS_vwREPORTE_PROVISION_IFRS[Fecha_corte], -3 ) = _DATE
        )
    )
RETURN
    IFRSPREVIUOS

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly -- How to provide sample data

View solution in original post

1 REPLY 1
v-cgao-msft
Community Support
Community Support

Hi @WilliamForero ,

 

Please try this measure:

GASTO =
VAR _DATE =
    MAX ( IFRS_vwREPORTE_PROVISION_IFRS[Fecha_corte] )
VAR IFRSPREVIUOS =
    CALCULATE (
        SUM ( IFRS_vwREPORTE_PROVISION_IFRS[PE_STAGE] ),
        FILTER (
            ALL ( IFRS_vwREPORTE_PROVISION_IFRS[Fecha_corte] ),
            EDATE ( IFRS_vwREPORTE_PROVISION_IFRS[Fecha_corte], -3 ) = _DATE
        )
    )
RETURN
    IFRSPREVIUOS

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly -- How to provide sample data

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.