Find dublicates, mark the rows with a color

Per_

Board Regular
Joined
Sep 16, 2011
Messages
90
<code style="margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: Consolas, Menlo, Monaco, "Lucida Console", "Liberation Mono", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Courier New", monospace, sans-serif; vertical-align: baseline; white-space: inherit;">Hi,

How can I find dublicates dependent on two columns and mark the rows with a color? Hopefully
anybody could help me!


column1 column2

Smith Jones <-- duplicate pair
Smith Johnson
Smith Jones <-- duplicate pair
Jones Walter



</code>
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
This should highlight duplicates, bit messy looping thru the temporary array as I don't think the worksheet count , match etc functions work with arrays.


Code:
Sub loopingTest()    
    Dim ArrayTest() As String
     Dim i As Long, j As Long, count As Long, FinalRow As Long
    ReDim ArrayTest(0)

    FinalRow = Cells(Rows.count, "A").End(xlUp).Row

    For i = 1 To FinalRow
     
            ArrayTest(UBound(ArrayTest)) = Range("A" & i).Value & Range("B" & i).Value
            ReDim Preserve ArrayTest(UBound(ArrayTest) + 1)


    Next i
    
    For j = 0 To UBound(ArrayTest) - 1
    count = 0
    For i = 1 To FinalRow
        If Range("A" & i).Value & Range("B" & i).Value = ArrayTest(j) Then count = count + 1
    Next i
    If count > 1 Then
    Range("A" & j + 1).EntireRow.Interior.ColorIndex = 20
    Else
    Range("A" & j + 1).EntireRow.Interior.ColorIndex = 0
    End If
    Next j
 
End Sub
 
Last edited:
Upvote 0
.
Try this :

Code:
Sub ChkColrDupes()
With ActiveSheet
lr = Cells(Rows.count, "A").End(xlUp).Row
For r = 1 To lr
    X3 = Left(Cells(r, "A"), 3)
    X4 = Right(Cells(r, "A"), 4)
    For rr = r + 1 To lr
        If Left(Cells(rr, "A"), 4) = X4 Or Right(Cells(rr, "A"), 3) = X3 Then
            Cells(r, "B") = "<-- Duplicate pair"
            Cells(r, "A").Interior.Color = vbYellow
            Cells(rr, "B") = "<-- Duplicate pair"
            Cells(rr, "A").Interior.Color = vbYellow
        End If


Next rr
Next r


End With
End Sub
 
Upvote 0
If you need different colors for each pair, this wont work, otherwise you could use Conditional Formatting.

1. highlight the range you want to apply the conditional formatting to
2. on the home tab, styles, select CF
3. select new rule, select use formula
4. enter =countifs($A$1:$A$100,$A1,$b$1:$b$100,$b1)>1 format fill as needed
 
Upvote 0
Hi,

Thanks for the answers. I got a very long list of names so it will take very long to loop ... Are there any other way to do it?
 
Upvote 0
Hello FDibbins,

I did not understand how to implement it in a vba call ...
 
Upvote 0
Hi,

Thanks for the answers. I got a very long list of names so it will take very long to loop ... Are there any other way to do it?

If you could live with formatting a few cells on each row rather than the whole row you could simply adjust the code I posted to load the range into a temporary array adjust any colours then dump it back to the sheet in one pass, at the moment it's writing to the sheet each time it gets a match because it needs to amend the entire row

Even simple things like Turning off screenupdating and calculations can dramatically speed up code if its continually having to write to the spreadsheet

Code:
On Error goto xit:
Application.ScreenUpdating = False
Application.Calculation = xlCalculateManual



'YOUR CODE IN HERE
xit:
Application.ScreenUpdating = True
Application.Calculation = xlCalculationAutomatic
 
Last edited:
Upvote 0

Forum statistics

Threads
1,216,033
Messages
6,128,427
Members
449,450
Latest member
gunars

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top