I am trying to determine how accurate a forecast is.
For example, a customer requested 18 items. However, they only pick-up or take 6 items. The forecast of their needs is only 33.3% accurate.
Calculating a formula that can handle the reverse scenario is more difficult.
I used the following formula to calculate the "Accuracy" column below. However, you can see that it returns -%'s. Does anyone have a better idea about how this might be done?
=1-((STDEV.P(0, (A2-B2)*2))/A2)
[TABLE="class: grid, width: 500, align: center"]
<TBODY>[TR]
[TD]Forecast
[/TD]
[TD]Actual
[/TD]
[TD]Accuracy
[/TD]
[/TR]
[TR]
[TD]16
[/TD]
[TD]16
[/TD]
[TD]100%
[/TD]
[/TR]
[TR]
[TD]14
[/TD]
[TD][/TD]
[TD]0%
[/TD]
[/TR]
[TR]
[TD]14
[/TD]
[TD]29
[/TD]
[TD]-7%
[/TD]
[/TR]
[TR]
[TD]17
[/TD]
[TD]5
[/TD]
[TD]29%
[/TD]
[/TR]
[TR]
[TD]19
[/TD]
[TD]17
[/TD]
[TD]89%
[/TD]
[/TR]
[TR]
[TD]11
[/TD]
[TD]26
[/TD]
[TD]-36%
[/TD]
[/TR]
[TR]
[TD]20
[/TD]
[TD]17
[/TD]
[TD]85%
[/TD]
[/TR]
[TR]
[TD]20
[/TD]
[TD]16
[/TD]
[TD]80%
[/TD]
[/TR]
[TR]
[TD]29
[/TD]
[TD][/TD]
[TD]0%
[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</TBODY>[/TABLE]
For example, a customer requested 18 items. However, they only pick-up or take 6 items. The forecast of their needs is only 33.3% accurate.
- 18 forecasted
- 6 actual
- 33.3% accuracy
Calculating a formula that can handle the reverse scenario is more difficult.
- 16 forecasted
- 25 actual
- 44% accuracy (right?)
I used the following formula to calculate the "Accuracy" column below. However, you can see that it returns -%'s. Does anyone have a better idea about how this might be done?
=1-((STDEV.P(0, (A2-B2)*2))/A2)
[TABLE="class: grid, width: 500, align: center"]
<TBODY>[TR]
[TD]Forecast
[/TD]
[TD]Actual
[/TD]
[TD]Accuracy
[/TD]
[/TR]
[TR]
[TD]16
[/TD]
[TD]16
[/TD]
[TD]100%
[/TD]
[/TR]
[TR]
[TD]14
[/TD]
[TD][/TD]
[TD]0%
[/TD]
[/TR]
[TR]
[TD]14
[/TD]
[TD]29
[/TD]
[TD]-7%
[/TD]
[/TR]
[TR]
[TD]17
[/TD]
[TD]5
[/TD]
[TD]29%
[/TD]
[/TR]
[TR]
[TD]19
[/TD]
[TD]17
[/TD]
[TD]89%
[/TD]
[/TR]
[TR]
[TD]11
[/TD]
[TD]26
[/TD]
[TD]-36%
[/TD]
[/TR]
[TR]
[TD]20
[/TD]
[TD]17
[/TD]
[TD]85%
[/TD]
[/TR]
[TR]
[TD]20
[/TD]
[TD]16
[/TD]
[TD]80%
[/TD]
[/TR]
[TR]
[TD]29
[/TD]
[TD][/TD]
[TD]0%
[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</TBODY>[/TABLE]
Last edited: