VBA to select the first duplicate value and rename it with new text in a range

Latha

Board Regular
Joined
Feb 24, 2011
Messages
146
Rich (BB code):
Dim rng, cell As Range
d = 1
Set rng = wrkbk.Sheets(1).Range("A1:AP1")


For Each cell In rng
    If WorksheetFunction.CountIf(rng, cell.Value) > 1 Then
    cell.Interior.ColorIndex = 3
    End If
    d = d + 1
Next

The above code is coloring the duplicate values in range A1:AP1
But instead, i need only the next dupllcate value to be selected and clear its content and put some new value

Please help me.
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
That can be done but I fear that there could be problems. The problem is, what is this "some new value"? Each dup value would have to be unique.

The approach I would use would be to use the Range's Find method. It could check the column number of the first one found and then modify the others if found range's Cells.Count>1.

Of course Ideally, you would use the Change event or Data Validation to prevent duplicates.
 
Upvote 0
we have 42 columns and last 6 columns has duplicate headers. thats from Ak:AP like the below


xxxxyyyyzzzzxxxxyyyyzzzz

<tbody>
</tbody>


so i would like the second xxxx to be renamed to xxxx1 and yyyy to be renamed to yyyy1
 
Upvote 0
Code:
Sub Main()
  Dim c As Range, cc As Range, r As Range, f As Range, i As Integer
  Set r = Range("A1:AP1")
  For Each c In r
    Set f = FoundRangesB(r, c.Value2, False)
    If Not f Is Nothing Then
      'Rename cells if needed
      i = 1
      For Each cc In f
        If Not c.Address = cc.Address Then
          cc.Value2 = cc.Value2 & i
          i = i + 1
        End If
      Next cc
    End If
  Next c
End Sub

Function FoundRangesB(fRange As Range, fStr As String, Optional tfBlanks As Boolean = True) As Range
    Dim objFind As Range
    Dim rFound As Range, FirstAddress As String
     
    If fStr = "" And tfBlanks = False Then
      Set FoundRangesB = Nothing
      Exit Function
    End If
     
    With fRange
        Set objFind = .Find(What:=fStr, after:=fRange.Cells((fRange.Rows.Count), fRange.Columns.Count), _
        LookIn:=xlValues, LookAt:=xlWhole, SearchOrder:=xlByRows, _
        SearchDirection:=xlPrevious, MatchCase:=True)
        If Not objFind Is Nothing Then
            Set rFound = objFind
            FirstAddress = objFind.Address
            Do
                Set objFind = .FindNext(objFind)
                If Not objFind Is Nothing Then Set rFound = Union(objFind, rFound)
            Loop While Not objFind Is Nothing And objFind.Address <> FirstAddress
        End If
    End With
    Set FoundRangesB = rFound
End Function
 
Upvote 0

Forum statistics

Threads
1,215,945
Messages
6,127,851
Members
449,411
Latest member
adunn_23

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