Pinterest Pixel

Highlight Duplicates Using Macros In Excel

Want to learn how to highlight cells that are duplicates and learn macros at the same time?... read more

Download Excel Workbook
Bryan
Posted on

Overview

Highlight Duplicates Using Macros In Excel | MyExcelOnline

Want to learn how to highlight cells that are duplicates and learn macros at the same time? Let me show you how to highlight duplicates using Macros in Excel!

Make sure your Excel has the Developer Tab enabled following this tutorial.

I explain how you can do this below step by step!

What does it do?

Highlights all cells with duplicate values in a selected range

Copy Source Code:


Sub HighlightDuplicates()

Dim cells As Range
Dim cell As Range
Set cells = selection

'Loop through each cell in your selected range looking for duplicates
For Each cell In cells

'Highlight with a color of your choice,  if that cell has duplicate values
If WorksheetFunction.CountIf(cells, cell.Value) > 1 Then
cell.Interior.ColorIndex = 36
End If
Next cell

End Sub


Final Result: 

Highlight Duplicates Using Macros In Excel

Exercise Workbook:

Highlight Duplicates Using Macros In Excel | MyExcelOnline

Download excel workbookHighlight-Duplicates.xlsm


STEP 1: Go to Developer > Code > Visual Basic

Highlight Duplicates Using Macros In Excel | MyExcelOnline

 

STEP 2: Paste in your code and Select Save. Close the window afterwards.

Highlight Duplicates Using Macros In Excel

 

STEP 3: Let us test it out! Make sure to have your cells selected.

Highlight Duplicates Using Macros In Excel

Open the sheet containing the data. Go to Developer > Code > Macros

Highlight Duplicates Using Macros In Excel | MyExcelOnline

 

Make sure your macro is selected. Click Run.

Highlight Duplicates Using Macros In Excel

 

With just one click, all of the duplicate cells now have been highlighted!

 Highlight Duplicates Using Macros In Excel

How to Highlight Duplicates Using Macros in Excel

 

101 Macros Book

If you like this Excel tip, please share itEmail this to someone

email

Pin on Pinterest

Pinterest

Share on Facebook

Facebook

Tweet about this on Twitter

Twitter

Share on LinkedIn

Linkedin

Highlight Duplicates Using Macros In Excel | MyExcelOnline
Highlight Duplicates Using Macros In Excel | MyExcelOnline
Bryan

Bryan is a best-selling book author of the 101 Excel Series paperback books.

Get Video Training

Advance your Microsoft Excel & Office Skills with the MyExcelOnline Academy!

Dramatically Reduce Repetition, Stress, and Overtime!
Exponentially Increase Your Chances of a Promotion, Pay Raise or New Job!

Learn in as little as 5 minutes a day or on your schedule.

Learn More!