Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
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%...
Solved! Go to Solution.
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:
To calculate your MAPE, your measure can be like:
MAPE = ( SUM ( 'Table'[CM_Orders_Actual] ) - [ForcastCore3 3 Months Ago] ) / [ForcastCore3 3 Months Ago]
Regards,
we have to create measure "xMAPE" using DAX
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:
To calculate your MAPE, your measure can be like:
MAPE = ( SUM ( 'Table'[CM_Orders_Actual] ) - [ForcastCore3 3 Months Ago] ) / [ForcastCore3 3 Months Ago]
Regards,
The above screen shot give clearly expalination
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
85 | |
70 | |
68 | |
50 | |
32 |
User | Count |
---|---|
117 | |
100 | |
73 | |
65 | |
40 |