Build a Forecast Accuracy Report
Every FP&A team is asked the same question eventually: how accurate is the forecast? A forecast accuracy report answers that question with math, not anecdote. This tutorial walks through building one in Workday OfficeConnect — comparing a prior forecast version (for example, the forecast made three months ago) against actuals, then calculating absolute error and MAPE (Mean Absolute Percentage Error) by account and period.
What you’ll build: A table with Forecast, Actual, Absolute Error, and Error % columns by account and month, plus a MAPE summary row.
What you’ll need:
- OfficeConnect installed and signed in (Build Your First Report)
- At least one snapshot forecast version (for example,
Forecast Q1orForecast 3-Month-Ago) preserved in Adaptive Planning - Actuals loaded for the same period the forecast covered
- Familiarity with version selection (Compare Planning Versions)
Step 1 — Set up the comparison columns
Step 2 — Add account rows
Step 3 — Calculate error metrics
In D1 type Abs Error. In D3 write:
=ABS(C3-B3)
Copy down for all account rows.
In E1 type Error %. In E3 write:
=ABS(C3-B3)/ABS(C3)
Format column E as a percentage. Dividing by actuals (not forecast) is the convention for MAPE.
#DIV/0!. Wrap the formula in IFERROR(..., "") to suppress the error, or exclude the row from the MAPE summary.Step 4 — Add a MAPE summary
Below your last account row, add a row labeled MAPE. In the Error % column for that row, write:
=AVERAGE(E3:E12)
This is the Mean Absolute Percentage Error across all scored accounts. Format as percentage.
Signed Error with =C3-B3 (no absolute value). The average of this column tells you whether the forecast was systematically high (negative) or low (positive). A MAPE of 5% with a strong bias is a different problem than a MAPE of 5% that averages to zero.Step 5 — Refresh and interpret
Result
You now have an objective forecast accuracy scorecard. Each month or quarter, refresh the workbook and the report tells you exactly which accounts the prior forecast nailed and which it missed — and by how much. Over time, you can watch MAPE trend down as the forecasting process improves.
Next steps
- Compare multiple forecast vintages side by side — see Compare Planning Versions
- Pair accuracy data with budget variance — see Budget vs. Actuals Variance
- Run accuracy across multiple scenarios — see Scenario Comparison