Z Score Calculator (Excel-Style)
If you searched for AZ score, you likely meant a Z score. Use this tool to calculate it quickly, then copy the matching Excel formulas below.
Optional: Build Mean and Std Dev from Raw Data
STDEV.S in Excel).What is a Z score in Excel?
A Z score tells you how far a value is from the average, measured in standard deviations. It is one of the fastest ways to compare scores across different scales.
- Z = 0 means the value is exactly at the mean.
- Z = 1 means one standard deviation above the mean.
- Z = -2 means two standard deviations below the mean.
The formula is:
Z = (x - mean) / standard deviation
How to calculate a Z score in Excel (2 easy methods)
Method 1: Use Excel's STANDARDIZE function
This is the shortest and most readable method when you already know the mean and standard deviation.
Syntax:
=STANDARDIZE(x, mean, standard_dev)
Example:
=STANDARDIZE(B2, $E$2, $E$3)
Where:
B2= observed valueE2= meanE3= standard deviation
Method 2: Use the manual formula in a cell
If you prefer transparency (or you want to teach the math), use:
=(B2 - $E$2) / $E$3
This does exactly the same thing as STANDARDIZE.
Step-by-step setup from raw data
Suppose your raw scores are in cells B2:B11. Here is a practical layout:
- Compute mean in
E2:=AVERAGE(B2:B11) - Compute sample standard deviation in
E3:=STDEV.S(B2:B11) - Compute Z score in
C2:=(B2-$E$2)/$E$3 - Copy
C2down to the rest of column C.
Use absolute references ($E$2, $E$3) so the mean and standard deviation do not shift while filling down.
STDEV.S vs STDEV.P: which one should you use?
- STDEV.S for a sample (most common in coursework and analytics).
- STDEV.P for an entire population.
If your data is only a subset of a bigger group, use STDEV.S.
How to interpret the result
After calculating a Z score, use this quick interpretation:
- Between -1 and 1: fairly typical
- Between 1 and 2 (or -1 and -2): somewhat unusual
- Above 2 or below -2: clearly unusual
- Above 3 or below -3: rare/extreme
Convert Z score to percentile in Excel
To convert a Z score in C2 into a percentile:
=NORM.S.DIST(C2, TRUE)
Format as Percentage to read it clearly (for example, 0.8413 becomes 84.13%).
Common mistakes and fixes
1) #DIV/0! error
Your standard deviation is zero or blank. Make sure data varies and your formula points to the correct cell.
2) Wrong references while filling down
Lock the mean and standard deviation cells using $ symbols.
3) Mixed text and numbers
If values are stored as text, convert them to numeric format before calculating.
4) Using STDEV.P accidentally
Switch to STDEV.S if your list is a sample and not the full population.
Quick copy-and-paste formula set
Mean: =AVERAGE(B2:B11)
Std Dev: =STDEV.S(B2:B11)
Z score: =(B2-$E$2)/$E$3
Alt Z score: =STANDARDIZE(B2,$E$2,$E$3)
Percentile: =NORM.S.DIST(C2,TRUE)
Final takeaway
To calculate an a z score in Excel, either use STANDARDIZE directly or compute it manually with mean and standard deviation. If your search said “AZ score,” the same formulas still apply—it is usually just shorthand for “a Z score.”