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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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