How to Calculate Coefficient of Variation (CV) in Excel (Formula)

Last Updated: March 14, 2024
puneet-gogia-excel-champs

- Written by Puneet

What is the Coefficient of Variation?

The coefficient of variation is a statistical measure of the relative variability of data points in a data series around the mean values. It is calculated as the ratio of the standard deviation to the mean and is often expressed as a percentage. A lower Coefficient of Variation means a more precise estimate.

In Short – Coefficient Variation measures data’s dispersion (variability) around its mean. The lower the coefficient of variation, the lower the level of dispersion that you have in the mean of data points.

Now, let’s return to Excel: To calculate the coefficient of variation in Excel, you can combine the STDEV.P and AVERAGE functions.

There are three steps to calculate the Coefficient of Variation:

  • Calculate Standard Deviation
  • Calculate Mean
  • Divide Both

Instead of using any complicated formula, one simple formula you can use to calculate the Coefficient Variation in Excel is Standard Deviation/Mean

=STDEV.P(data_range) / AVERAGE(data_range)

Replace data_range with the actual range of your data. This formula calculates the standard deviation of the data set (using STDEV.P), then divides it by the average of the data set (using AVERAGE), giving you the CV.

In this formula, STDEV.P will help you get the standard deviation, and the average function will help you to get the average of the data points.

In the end, you need to divide the standard deviation by the average to get the coefficient of variation.

You can also say it’s like dividing the standard deviation by the mean of the data.

data-with-different-data-points

In the above simple example, you have the following data with seven different data points, and now you need to calculate the CV (coefficient of variation) for these data points.

Steps to Calculate Coefficient of Variation in Excel

You can use the steps below to calculate the CV for our sample. Make sure to have the sample data from here so you can try it yourself.

calculate-coefficient-variation
  1. First, enter the STDEV.P in cell F1 or the cell where you want to insert it. In the STDEV.P function, you need to refer to the range where you have the values. In our example, those values are in the range A1:E1.
  2. After that, close the function and enter a divide operator. This is required to divide the result from the STDEV.P with the average values.
  3. Next, enter the average function after the divide operator and refer to the range A1 to E1. This is the same range where we have all the values that we have referred to in the STDEV.P function
  4. Finally, enter the closing parentheses and hit enter to get the result. And the moment you hit enter, you will get the result
=STDEV.P(A1:E1)/AVERAGE(A1:E1)

Note: The result you get from this formula will always be in the numbers, but here, you need to apply the percentage format to the cell, and for this, you can use the keyboard shortcut Ctrl + Shift + %. If you have calculated multiple calculations, select all those cells and then use the keyboard shortcut.

How this Formula Works

To understand this formula, we need to split it into two parts, as I said earlier.

The STDEV.P function calculates the standard deviation in the first part by ignoring logical values and blank cells. Ignoring these is important because they can mislead the final result.

split-the-formula

In the second part, we have the average function, which calculates the average of the data points. The formula bar shows that the average value is 63. And that’s the number that will help you get the average standard deviation.

average-function-in-second-part

In the end, when you divide 2.82842712474619 by 63, you get 0.04, which, when converted to percentage format, is 4%.

STDEV.P Vs. STDEV.S

There are two ways to calculate the standard deviation in Excel. In this example, we used the STDEV.P, which considers the data an entire population. That’s the reason it has a P in its name. But you can also use STDEV.S, where S stands for sample.

To understand the difference between the two, you can take this example: Let’s say the data you have of the class is just a few students (sample data). In this case, you can use STDEV.S; if that data is for the entire class, you can use STDEV.P.

When you use a sample instead of the entire population, the accuracy of the CV remains slightly less than that of the entire population. But still, it depends on the method you want to use.

Points to Remember

There are a few essential points to remember when calculating the coefficient of variation (CV) in Excel.

  • Make sure to define the same range for both of the functions. Both calculations must be from the same data set; otherwise, the result will be incorrect.
  • You can choose between STDEV.P and STDEV.S according to your data type. We have discussed it in detail earlier in this tutorial.