How to Remove Duplicates in Google Sheets
Delete duplicate rows with the built-in tool, pull a clean unique list with a formula, or just highlight the duplicates so you can review them first. Here's each way.
The quick version: select your data, go to Data → Data cleanup → Remove duplicates, pick the columns, and click. Here are all three approaches, including one that doesn't touch your original.
1. The built-in tool
Select the range, then Data → Data cleanup → Remove duplicates. Tick whether row 1 is a header and which columns should count toward a duplicate — leave all ticked to remove fully identical rows, or one column to dedupe on just that field. Click Remove duplicates and Sheets reports how many it deleted.
2. The UNIQUE function (keeps the original)
To pull a clean list without altering your data, use =UNIQUE(A2:A100) in an empty spot — it spills the distinct values. Sort it too: =SORT(UNIQUE(A2:A100)).
3. Highlight without deleting
To review first, use conditional formatting. Select the range, Format → Conditional formatting → Custom formula is, and enter:
=COUNTIF(A:A, A1) > 1
Every duplicate gets colored; nothing is removed.
Analyze your Sheets data with AI
Once it's clean, ask questions about your Google Sheets in plain English with =QUIRIZ(). Free to start.
Try Quiriz free →