How to remove non duplicates in excel
Tutor 5 (134 Reviews)
Excel Tutor
Still stuck with a Excel question
Ask this expertAnswer
To remove non-duplicates in Excel, you are essentially keeping only the values that appear more than once and removing all unique values. Follow these steps:
Using Conditional Formatting and Filtering
Select the range of data you want to process. For example, select column
Aif your data is inA2:A100.Go to the Home tab and click Conditional Formatting → Highlight Cells Rules → Duplicate Values.
In the Duplicate Values dialog box:
Choose Duplicate in the first drop-down.
Select a formatting style (e.g., light red fill).
Click OK. All duplicates will now be highlighted.
Apply a filter:
Go to the Data tab → Filter.
Use the filter dropdown in your column and select only the highlighted duplicates.
Copy the filtered data to a new location or delete the rows that are not highlighted.
Using a Formula to Identify Non-Duplicates
In a blank column next to your data, enter this formula (assuming data is in
A2:A100):=COUNTIF($A$2:$A$100, A2)>1
This formula returns TRUE for duplicates and FALSE for unique values.
Apply a filter on the column with the formula.
Filter to show only TRUE values.
Copy or delete the rows with FALSE (non-duplicates).
Using the “Remove Duplicates” Tool (Indirect Method)
Excel’s Remove Duplicates tool does not directly remove non-duplicates. Use this approach:
Add a helper column with the formula:
=COUNTIF(A:A, A2)
This counts the number of times each value appears.
Filter the helper column for values greater than 1.
Keep the filtered rows and delete the rest (non-duplicates).
Notes
On Windows and Mac, all these steps are identical in Excel 2016 or later.
Conditional Formatting is dynamic, so changes in data automatically update highlights.
Using formulas gives more control, especially for large datasets.
Removing non-duplicates is useful for cleaning data for analysis or reporting where repeated entries are meaningful.
Get Online Tutoring or Questions answered by Experts.
You can post a question for a tutor or set up a tutoring session
Answers · 1
How to freeze a row in excel
Answers · 1
How to freeze the top three rows in excel
Answers · 1
How to freeze the top two rows in excel
Answers · 1
How to freeze top row excel mac
Answers · 1