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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Kamala
Regular Visitor

Get data of 3 months ago by current month

The business has decided to compare original forecast 3 months ago to “Current Months” CM_Orders_Actual.  This measurement will give us a better understand on how our forecast is impacting our suppliers.  Goal is to have a MAPE < 20%...

 

 

 

1 ACCEPTED SOLUTION

@Kamala

 

In this scenario, you just need to limit the context to the same day three months ago. Please keep all RecordDate into the first day of month since you have 2nd for all Feb. To calculate the ForcastCore3 month Ago, you can use formula like below:

 

ForcastCore3 3 Months Ago=
CALCULATE (
    SUM ( 'Table'[ForcastCore3] ),
    FIRSTDATE (
        DATESINPERIOD (
            'Table'[RecordDate],
            LASTDATE ( 'Table'[RecordDate] ),
            -4,
            MONTH
        )
    )
)

Please refer to my sample below:

 

 

89.PNG

 

To calculate your MAPE, your measure can be like:

 

MAPE =
 ( SUM ( 'Table'[CM_Orders_Actual] ) - [ForcastCore3 3 Months Ago] )
    / [ForcastCore3 3 Months Ago]

Regards,

 

View solution in original post

3 REPLIES 3
Kamala
Regular Visitor

we have to create measure "xMAPE" using DAX  

@Kamala

 

In this scenario, you just need to limit the context to the same day three months ago. Please keep all RecordDate into the first day of month since you have 2nd for all Feb. To calculate the ForcastCore3 month Ago, you can use formula like below:

 

ForcastCore3 3 Months Ago=
CALCULATE (
    SUM ( 'Table'[ForcastCore3] ),
    FIRSTDATE (
        DATESINPERIOD (
            'Table'[RecordDate],
            LASTDATE ( 'Table'[RecordDate] ),
            -4,
            MONTH
        )
    )
)

Please refer to my sample below:

 

 

89.PNG

 

To calculate your MAPE, your measure can be like:

 

MAPE =
 ( SUM ( 'Table'[CM_Orders_Actual] ) - [ForcastCore3 3 Months Ago] )
    / [ForcastCore3 3 Months Ago]

Regards,

 

Kamala
Regular Visitor

image001 (1).jpg

The above screen shot give clearly expalination

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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