The Excel VAR.P Function

Related Function:
VAR.S Function
Variance

The Variance is a statistical measure, that is commonly used across a set of values, to identify the amount that the values vary from the average.

For any set of values, x, the equation for calculating the Variance is:

Population Variance Equation

where,

  • x takes on each value in the set;
  • x is the average of the set of values;
  • n is the number of values.
For further details, see the Wikipedia Variance page

Function Description

The Excel VAR.P function returns the Variance of a given set of values.

The VAR.P function is new to Excel 2010. However, this is simply an improved (slightly more accurate) version of the VARP function, which is available in earlier versions of Excel.

The syntax of the Var.P function is:

VAR.P( number1, [number2], ... )

Where the number arguments are values or arrays of values that provide a minimum of 2 numeric values to the function. The maximum number of arguments that can be supplied to the VAR.P function is 254.

Alternative Excel Variance Functions

Note that the Var.P function is used when calculating the variance of an entire population. If your data is just a sample of the population (e.g. if your data set records the individual heights of a sample of UK males), you should use the Var.S function.

See the page on Variance in Excel for a comparison of the different Excel variance functions.


Var.P Function Example

Example of use of the Excel Var.P Function

A company has kept a record of its monthly sales figures, over three years. These are stored in cells B3-B14, D3-D14 and F3-F14 of the above example spreadsheet on the right.

The variance of the three years' sales figures is calculated in cell H3 of the spreadsheet. The formula for this, (shown in the formula bar), is:

=VAR.P( B3:B14, D3:D14, F3:F14 )

As shown in cell H3, the calculated variance for the 3 years of sales figures is 6,170,524.69.


Other Argument Types

The example above shows the arguments to the Var.P function being input in the form of 3 cell ranges. However, you can also input figures directly, as individual numbers or number arrays.

For example, if, during January and February 2010 the sales figures are 13,000 and 14,500 you can add these directly into the above function as follows:

Either as individual numbers:

=VAR.P( B3:B14, D3:D14, F3:F14, 13000, 14500 )

or, as an array of numbers:

=VAR.P( B3:B14, D3:D14, F3:F14, {13000,14500} )

This gives the updated variance of 5,930,921.05.

For further details and examples of the Excel Var.P function, see the Microsoft Office website.


Var.P Function Errors

If you get an error from the Excel Var.P Function, this is likely to be one of the following:

Common Errors
#DIV/0! - Occurs if none of the values that have been supplied to the function are numeric.
#VALUE! - Occurs if any values that are supplied directly to the Var.P function are text values that cannot be interpreted as numbers.