How to Find Outliers in Excel: 3 Proven Methods
The two most reliable ways to find outliers in Excel are the Z-score method (flag values more than 3 standard deviations from the mean) and the IQR method (flag values outside Q1 − 1.5×IQR to Q3 + 1.5×IQR). Use conditional formatting to highlight them automatically.
An outlier is a value that sits far from the rest of your data. It might be a typo, a fraudulent transaction, or a genuine extreme event — but you can’t decide until you find it. Here are the three methods analysts actually use in Excel, from most robust to quickest.
Method 1: The Z-score method
The Z-score tells you how many standard deviations a value is from the mean. In a roughly normal dataset, almost everything falls within ±3 standard deviations, so anything beyond that is suspicious.
Put this in a helper column next to your data:
=(A2-AVERAGE($A$2:$A$100))/STDEV.S($A$2:$A$100)
Then flag any row where ABS(z) > 3. Lower the threshold to 2 for stricter screening. The Z-score method is simple but sensitive: a single huge outlier inflates the standard deviation and can hide smaller ones.
Method 2: The IQR (box-plot) method
The interquartile range method is more robust because it’s based on quartiles, not the mean. It’s the exact rule Excel box-and-whisker charts use.
Q1 =QUARTILE.INC($A$2:$A$100, 1)Q3 =QUARTILE.INC($A$2:$A$100, 3)IQR = Q3 - Q1
Any value below Q1 - 1.5*IQR or above Q3 + 1.5*IQRis an outlier. Because quartiles ignore the extremes themselves, this method isn’t fooled by the very values it’s hunting — making it the better default for skewed or small datasets.
Method 3: Highlight them automatically with conditional formatting
Rather than reading a helper column, shade outliers in place:
- Select your data range.
- Home → Conditional Formatting → New Rule → “Use a formula to determine which cells to format”.
- Enter the test, e.g.
=ABS((A2-AVERAGE($A$2:$A$100))/STDEV.S($A$2:$A$100))>3. - Pick a fill color and click OK.
Which method should you use?
Use the IQR method as your default, especially for skewed data. Use the Z-scorewhen your data is roughly normal and you want a familiar “3 sigma” rule. When they disagree, inspect the flagged rows by hand before deleting anything.