VARP Function

Excel Functions › Compatibility

All versions (legacy) Compatibility

The Excel VARP function returns the variance of an entire population (dividing by n). It is a legacy name — Microsoft now recommends VAR.P, which is identical.


Quick answer:
=VARP({1,2,3,4,5,6,7,8,9,10}) population variance = 8.25

Syntax

=VARP(number1, [number2], ...)
ArgumentDescription
number1RequiredThe first value or range covering the whole population.
number2, ...OptionalUp to 254 more values or ranges. Text and logical values in references are ignored.

How to use it

VARP treats your numbers as the complete population, dividing by n. It is the square of the population standard deviation (STDEVP).

=VARP({1,2,3,4,5,6,7,8,9,10}) // population variance = 8.25

If the data is only a sample of a larger group, use VAR (divide by n−1) instead, which gives a slightly larger value.

Use the modern name: =VAR.P(...) is the supported replacement and returns the same value. The .P marks it as the “population” variance.

Try it: interactive demo

Live demo

Pick a VARP example to see the formula and its result.

Result:

Practice workbook

📊
Download the free VARP practice workbook
Every example on this page, ready to open in Excel — plus practice challenges with answers on a separate tab. No sign-up required.

Frequently asked questions

Is VARP the same as VAR.P?
Yes — VAR.P (Excel 2010+) is the population variance (divides by n) and returns identical results. VARP is kept for backward compatibility.
When should I use VARP instead of VAR?
Use VARP only when your data is the entire population. If it is a sample of a larger group, use VAR (n−1).
How does VARP relate to STDEVP?
Population variance is the square of population standard deviation: VARP = STDEVP^2. Both divide by n.
Should I switch to VAR.P?
For new work, yes — it is the supported name and clarifies the population-versus-sample choice. Existing VARP formulas keep working.

Master functions like this in one day

This page covers one function. Our Excel Formulas and Functions class covers the 30 that matter most — live, hands-on, taught by professionals in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.

See the Formulas & Functions Class

Related functions: VAR.P · VAR.S · VAR · STDEVP · STDEV