Jay wrote:
> So, my question is - what's the best way of calculating the Average % of
> Expected Value realised across ALL sales?
>From your example, I think you are really asking: what is the "best"
way to calculate the "average ratio" of actual v. expected price.
> Each of the sales above individually works out as:
> 5000 4500 111.11%
> 3000 2800 107.14%
> 4500 3850 116.88%
> 3850 4375 88.00%
>
> So, the two methods I can see of calculating the OVERALL Average % are:
> 1) Average the % data above-gives Avg% of Expected Values over ALL sales
I assume you mean AVERAGE(111.11%,...,88.00%)
> 2) SUM or AVERAGE both of the original columns & calculate the %
I assume you mean SUM(5000,...,3850) / SUM(4500,...,4375)
#1 is called the simple average; #2 is called the weighted average.
Although the weighted average is often the better choice, there are
times when the simple average might apply. See the article at
http://mathforum.org/library/drmath/view/64391.html for one
perspective. Although the article is not well-written, IMHO, at least
it demonstrates that the "right" answer is not as cut-and-dried as some
people might have you believe.
For example, consider comparing the "average ratio" above with the
"average ratio" for the following results:
Actual Expected Ratio
5000 4375 114.29%
3000 3850 77.92%
4500 2800 160.71%
3850 4500 85.56%
Since each column has the same numbers, simply in a different order,
method #2 would result in the same "average ratio", whereas method #1
would reflect a difference.
Which one is "right" depends on whether you want to reflect the
"average of the total"
(method #2) or the "average individual result" (aka "typical result";
method #1).
----- complete original article -----
Jay wrote:
> This query is as much about mathematical method as it is Excel.
>
> A day-to-day task is to review sales data against expected values. So,
> let's say I have 2 columns i.e.
>
> Sold Price Expected Value
> 5000 4500
> 3000 2800
> 4500 3850
> 3850 4375
>
> With a few thousand rows.
>
> So, my question is - what's the best way of calculating the Average % of
> Expected Value realised across ALL sales? Each of the sales above
> individually works out as:
>
> 5000 4500 111.11%
> 3000 2800 107.14%
> 4500 3850 116.88%
> 3850 4375 88.00%
>
> So, the two methods I can see of calculating the OVERALL Average % are:
>
> 1) Average the % data above-gives Avg% of Expected Values over ALL sales
>
> 2) SUM or AVERAGE both of the original columns & calculate the % i.e.
>
> 5000 4500
> 3000 2800
> 4500 3850
> 3850 4375
> ------------
> 16350 15525 105.31%
>
> So, I have 2 questions:
>
> A) Which method gives the most accurate Result.
> B) Why can the Final Avg % differ by up to 10% between both methods?
>
> Thanks for taking the time to read this, but we just can't figure out
> why the 2 methods can give such varied results. (a little variance would
> be expected)
>
> Any help greatly appreciated.
>
> Jay