How to Calculate Z-Scores in Google Sheets

Z-scores can be easily calculated in Google Sheets using the formula, =STANDARDIZE(x, mean, standard_deviation). This formula takes the observed value (x), the mean, and the standard deviation as its three arguments and returns the Z-score for the observed value. As such, it can be used to quickly compare a single value to a population of values. This can be useful for determining how a particular value differs from the mean or median value of a set.


In statistics, a z-score tells us how many standard deviations away a value is from the mean. We use the following formula to calculate a z-score:

z = (X – μ) / σ

where:

  • X is a single raw data value
  • μ is the mean of the dataset
  • σ is the standard deviation of the dataset

This tutorial explains how to calculate z-scores for raw data values in Google Sheets.

Example: Z-Scores in Google Sheets

Suppose we have the following dataset and we would like to find the z-score for every raw data value:

We can perform the following steps to do so.

Step 1: Find the mean and standard deviation of the dataset.

First, we need to find the mean and the standard deviation of the dataset. The following formulas show how to do so:

The mean turns out to be 14.375 and the standard deviation turns out to be 4.998.

Step 2: Find the z-score for the first raw data value.

Next, we’ll find the z-score for the first raw data value by typing the following formula in cell B2:

=(A2$E$2)/$E$3

Z-scores in Google Sheets

Once we’ve calculated the first z-score, we can highlight the rest of column B starting with cell B2 and press Ctrl+D to copy the formula in cell B2 to each of the cells below it:

Calculating z-scores in Google Sheets

Now we have found the z-score for every raw data value.

How to Interpret Z-Scores

A z-score simply tells us how many standard deviations away a value is from the mean.

In our example, we found that the mean was 14.375 and the standard deviation was 4.998.

So, the first value in our dataset was 7, which had a z-score of (7-14.375) / 4.998 = -1.47546. This means that the value “7” is -1.47545 standard deviations below the mean. 

The next value in our data, 12, had a z-score of (12-14.375) / 4.998 = -0.47515.  This means that the value “12” is -0.47515 standard deviations below the mean. 

Calculating z-scores in Google Sheets

The further away a value is from the mean, the higher the absolute value of the z-score will be for that value. For example, the value 7 is further away from the mean (14.375) compared to 12, which explains why 7 had a z-score with a larger absolute value.

How to Calculate Z-Scores in Excel
How to Calculate Z-Scores in R
How to Calculate Z-Scores on a TI-84 Calculator

x