Remove Duplicates

Removing duplicates helps you clean your data by deleting repeated values and keeping only unique records.

It is commonly used for:

  • Cleaning customer lists
  • Removing repeated IDs
  • Eliminating duplicate entries
  • Preparing reports

Method 1: Using Remove Duplicates Tool (Built-in Feature)

Steps:

  1. Select your data range
  2. Go to Data tab
  3. Click Remove Duplicates
  4. Select the columns to check
  5. Click OK

Excel will:

  • Remove duplicate rows
  • Keep the first occurrence
  • Show how many duplicates were removed

Example

If your list contains:

Ali
Sara
Ali
Ahmed
Sara

After removing duplicates:

Ali
Sara
Ahmed

Method 2: Remove Duplicates from Multiple Columns

If your table has:

Name | City
Ali | Karachi
Ali | Lahore
Ali | Karachi

  • Select both columns
  • Click Remove Duplicates
  • Choose both columns

Only exact matching rows will be removed.

Method 3: Using Formula (UNIQUE Function – New Excel)

=UNIQUE(A2:A10)

This creates a new list with unique values.

Method 4: Using Advanced Filter

  1. Select data
  2. Go to Data tab
  3. Click Advanced
  4. Choose Copy to another location
  5. Check Unique records only

Important Tips

  • Always create a backup before removing duplicates
  • Ensure headers are selected correctly
  • Duplicates are case-insensitive (Ali and ALI are treated same)
  • Blank cells can also be removed if duplicated

Why Removing Duplicates is Important

  • Improves data accuracy
  • Reduces reporting errors
  • Makes analysis easier
  • Saves time in large datasets

Removing duplicates is a simple but powerful data cleaning feature in Excel that improves data quality and reliability.

Home » Excel Data Management (EDM) > Data Cleaning > Remove Duplicates