Forum Discussion

vincenttys's avatar
vincenttys
Helper I
8 years ago
Solved

Monthly Rolling

Hi All,   I only started to use PowerBI and already stuck with what i currently working on and hopefully i can get the assistance i need from this community.   Please see below is the snapshot of...
  • v-jiascu-msft's avatar
    8 years ago

    Hi vincenttys,

     

    Please check out the demo here.

    1. Create a new date table;

    2. Establish relationships;

    3. Create a measure.

    Measure =
    CALCULATE (
        SUM ( Table1[Value] ),
        DATESINPERIOD (
            'Calender'[Date],
            EOMONTH ( MIN ( 'Calender'[Date] ), -1 ),
            -3,
            MONTH
        )
    )

    Monthly_Rolling

     

    Best Regards,

    Dale

  • v-jiascu-msft's avatar
    8 years ago

    Hi vincenttys,

     

    Can you mark the proper answer as a solution please?

     

    Best Regards,

    Dale