Quick answer
This task is easiest when you start with a clean range, apply the change to a small sample, and then verify the result before using it across the full workbook.
When to use this
Use this guide when you need a repeatable spreadsheet process, not a one-off manual edit. The goal is to make the workbook easier to audit, update, and share.
Step-by-step
- Select the full data range, including the headers.
- Go to Data > Remove Duplicates.
- Choose the columns that should be checked for duplicate values.
- Click OK, then review how many duplicate rows were removed.
- Save a copy of the original data if you may need to audit the change later.
Real-life example
A sales export contains the same customer twice. Use Remove Duplicates to keep one row per customer, or use UNIQUE to create a clean list without changing the source data.
Formula or safer alternative
When the built-in command changes the original data, a helper formula can be safer because it creates a reviewable result first.
=UNIQUE(A2:A100)Tips before you apply it
- Use Excel Tables when the data will grow later.
- Keep raw data, helper columns, and final reports separated.
- Use clear column names so formulas and pivot tables are easier to troubleshoot.
- Check whether the result should update automatically when new rows are added.
Common mistakes
- Selecting only part of the table and leaving related columns behind.
- Changing the original data without keeping a backup.
- Mixing numbers stored as text with real numbers.
- Forgetting to refresh pivot tables, charts, or Power BI reports after the data changes.