How to show duplicates in excel
Tutor 5 (87 Reviews)
Excel Tutor
Still stuck with a Excel question
Ask this expertAnswer
To show duplicates in Excel, you can use Conditional Formatting or formulas, depending on the requirement.
Using Conditional Formatting
Select the range of cells you want to check for duplicates.
Go to the Home tab on the ribbon.
Click Conditional Formatting → Highlight Cells Rules → Duplicate Values.
In the Duplicate Values dialog box:
Ensure Duplicate is selected in the first dropdown.
Choose a formatting style (e.g., light red fill with dark red text).
Click OK.
Duplicates in the selected range will now be highlighted with the chosen format.
Variation for Macbook: The steps are the same, but the Conditional Formatting menu is under Format → Conditional Formatting.
Using a Formula
Select a blank column next to your data.
Enter the following formula for the first row (assuming your data is in column A starting at A2):
=IF(COUNTIF(A:A, A2) > 1, "Duplicate", "Unique")
Drag the formula down the column to apply it to all rows.
This will show "Duplicate" for repeated values and "Unique" for values that appear only once.
Using the Remove Duplicates Feature to Identify
Copy your original column to a new sheet or column to preserve data.
Go to the Data tab → Remove Duplicates.
Check the column(s) to analyze.
Excel will display a message indicating how many duplicates were removed and how many unique values remain.
Notes
Conditional Formatting works for text, numbers, and dates.
Formulas give more control if you want to create filters, reports, or further calculations based on duplicates.
Conditional Formatting updates dynamically if you add or change data.
Formulas allow sorting and filtering based on the "Duplicate" label.
This method highlights duplicates efficiently and is widely used in data cleaning and analysis tasks.
. Was this Helpful?Get Online Tutoring or Questions answered by Experts.
You can post a question for a tutor or set up a tutoring session
Answers · 1
What is the formula to highlight duplicate values
Answers · 1
What is the formula to remove duplicates
Answers · 1
How to delete duplicate values in excel
Answers · 1
How to delete duplicate rows based on one column
Answers · 1