VAR Function (Functions in Excel)
Values | Values | Values | ||
10 | 10 | 10 | ||
10 | 10 | 11 | ||
9 | 11 | 9 | ||
10 | 10 | 12 | ||
0.25 | 0.25 | 1.6666667 | ||
=VAR(C4:C7) | =VAR(E4:E7) | =VAR(G4:G7) |
What Does It Do ? |
This function calculates the sample population variance of a list of values. |
A sample population is used when the list of values represents a sample of a population. |
Syntax |
=VAR(Range1,Range2,Range3 through to Range30) |
Formatting |
No special formatting is needed. |
Example |
The table below was used by a company interested in buying a new machine |
to pack washing powder. |
Three machines were short listed and allow to run for a day. |
At the end of the day four boxes of soap powder were picked at random from the production |
of each machine. |
The boxes were weighed and the =VAR() function used as these boxes only represented |
a sample of the complete days production. |
The machine with the smallest variance was the most consistent. |
Soap Powder Box Filling Machine Test Results | ||||||
Test 1 | Test 2 | Test 3 | Test 4 | Variance | ||
Machine 1 | 1.4 | 1.5 | 1.6 | 1.5 | 0.0067 | =VAR(D34:G34) |
Machine 2 | 1.5 | 1.5 | 1.4 | 1.5 | 0.0025 | =VAR(D35:G35) |
Machine 3 | 1.5 | 1.6 | 1.7 | 1.8 | 0.0167 | =VAR(D36:G36) |
The smallest variance is : | 0.0025 | =MIN(H34:H36) | ||||
The machine with the smallest variance is : | Machine 2 | |||||
=INDEX(C34:C36,MATCH(MIN(H34:H36),H34:H36,0)) |
Explanation of formula: | |
This finds the lowest value. | =MIN(H34:H36) |
This finds the position of the lowest value. | =MATCH(MIN(H34:H36),H34:H36,0) |
This looks down the Machine column to | =INDEX(C34:C36,MATCH(MIN(H34:H36),H34:H36,0)) |
find the machine name. |
0 comments:
Post a Comment