This post is a follow up to the unique random numbers post – I have included a Remove Duplicates from Range function, in the workbook here, so that you can check the list it creates. This function below will remove the first duplicate in a range that you select.
Sub RemoveFirstDuplicates()
Dim rConstRange As Range, rFormRange As Range
Dim rAllRange As Range, rCell As Range
Dim iCount As Long
Dim strAdd As StringOn Error Resume Next
Set rAllRange = Selection
If WorksheetFunction.CountA(rAllRange) < 2 Then
MsgBox “You selection is not valid”, vbInformation
On Error GoTo 0
Exit Sub
End If
Set rConstRange = rAllRange.SpecialCells(xlCellTypeConstants)
Set rFormRange = rAllRange.SpecialCells(xlCellTypeFormulas)
If Not rConstRange Is Nothing And Not rFormRange Is Nothing Then
Set rAllRange = Union(rConstRange, rFormRange)
ElseIf Not rConstRange Is Nothing Then
Set rAllRange = rConstRange
ElseIf Not rFormRange Is Nothing Then
Set rAllRange = rFormRangeElse
MsgBox “You selection is not valid”, vbInformation
On Error GoTo 0
Exit Sub
End IfApplication.Calculation = xlCalculationManual
For Each rCell In rAllRange
strAdd = rCell.Address
strAdd = rAllRange.Find(What:=rCell, After:=rCell, LookIn:=xlValues, LookAt:=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False).AddressIf strAdd <> rCell.Address Then
rCell.Clear
End IfNext rCell
Application.Calculation = xlCalculationAutomatic
On Error GoTo 0End Sub
This is another duplicate function – this one will count the duplicates and also highlight them in green (this was not included in download).
Sub CountNumberOfDuplicates()
On Error GoTo ENDER
Application.ScreenUpdating = FalseIf Selection.Columns.Count * Selection.Rows.Count = 1 Then
MsgBox “Select more then one cell.”, vbExclamation
Exit Sub
End IfSetColourIndex = 4
i = Selection.Cells.Count
n = 0
k = 0For Each MyCell In Selection
CellCount = MyCell.Value
If MyCell.Value = “” Then
ElseIf Application.WorksheetFunction.CountIf(Selection, CellCount) > 1 Then
k = k + 1
n = n + 1
MyCell.Interior.ColorIndex = SetColourIndexEnd If
End If
Percentage = n / i * 100
Next
Application.StatusBar = False
Application.ScreenUpdating = TrueMsgBox “Selection contains ” & k & ” duplicate values.”, vbInformation
Exit Sub
ENDER:
Application.StatusBar = False
Application.ScreenUpdating = TrueEnd Sub