Counting and updating dupes in an array

Matt_O

Board Regular
Joined
May 23, 2013
Messages
64
Hello Excel VBA Masters,

I'm hoping someone can help me with my current challenge.

I hope to cycle through a one dimension array and when a duplicate piece of data is found the first instance of a duplicate has "dupe_1" appended to the data. If a second duplicate is found it will have "dupe_2" appended.

So far I can cycle through the array and add "dupe_" plus a count. However, I am only adding the total count of dupes found and it is not specific to the data.

Desired results would look like this:

Column A contains the data

file1
file2
file3
file1_dupe_1
file4
file1_dupe_2
file3_dupe_1

My current code (below) results in creating "file3_dupe_3" instead of "file3_dupe_1" since it's the 3rd duplicate found in the array. I want to show that it's the first instance of a duplicate for "file3".

Current result:

file1
file2
file3
file1_dupe_1
file4
file1_dupe_2
file3_dupe_3

Code:
[FONT=Verdana]    Dim rc As Long    
    rc = shOutput.UsedRange.Rows.Count    
   
    Dim rg As Range
    Set rg = shOutput.Range(Cells(1, 1), Cells(rc, 1))
    
    Dim cnt As Long
    cnt = 0
    
    Dim dupe As Variant
    
    Dim i As Long    
    For i = 2 To rc        
        dupe = Application.Match(Cells(i, 1), rg, 0)
            If i <> dupe Then
                cnt = cnt + 1
                Cells(i, 1) = Cells(i, 1).Value & "_dupe" & "_" & cnt
            End If[/FONT]
[FONT=Verdana]    Next i[/FONT]

I've tried placing cnt = 0 in multiple locations to see if that helps but it only made each dupe have a count of 1.

I hope the question makes sense and thanks in advance to anyone who responds.

Cheers,
Matt
 
Last edited:

Excel Facts

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.
How about
Code:
Sub MattO()
   Dim Cl As Range
   
   With CreateObject("scripting.dictionary")
      For Each Cl In Range("A1", Range("A" & Rows.Count).End(xlUp))
         If Not .exists(Cl.Value) Then
            .Add Cl.Value, 0
         Else
            .Item(Cl.Value) = .Item(Cl.Value) + 1
            Cl.Value = Cl.Value & "_dupe_" & .Item(Cl.Value)
         End If
      Next Cl
   End With
End Sub
 
Upvote 0
You're welcome & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,214,911
Messages
6,122,198
Members
449,072
Latest member
DW Draft

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