mircea_a,
By the way you can get the variance in one formula and you can be sure it produces the correct answer as it simply does what it says on the can (so to speak) - it's this:
=SUM((A1:A30-AVERAGE(A1:A3
Enter it as an array formula using CTRL+SHIFT+ENTER and Excel will automatically convert the formula to:
{=SUM((A1:A30-AVERAGE(A1:A
You will find that, that formula will give the same result as VARP().
Hope that helps a bit more.
Patrick
Main Topics
Browse All Topics





by: patrickabPosted on 2007-06-09 at 17:52:23ID: 19250745
mircea_a,
Use VARP() and it will give you the correct result. I have checked it manually using the sum of the squares of the differences from the mean, divided by the number of items.
=(STDEVP(A1:A30))^2
Will also give you the correct result. After all the square of the Std Deviation = Variance
Hope that helps
Patrick