Macro para quitar repetidos de listbox
----------------
Buena tarde
Pueden ayudarme con esto
Necesito que en listbox no me aparezcan repetidos
Utilizo esto para mostrar la lista
Private Sub ComboBox1_Change()
Dim subt As Long
Dim en As Integer
Dim subt2 As Long
If Me.ComboBox1.Value = Empty Then
Me.ListBox1.Clear
Me.ComboBox1.SetFocus
Exit Sub
End If
Me.ListBox1.Clear
items2 = Hoja19.Range("A" & Rows.Count).End(xlUp).Row
'items = Hoja12.Range("a3:a500").CurrentRegion.Rows.Count
For i = 3 To items2
If LCase(Hoja19.Cells(i, 4).Value) Like "*" & LCase(Me.ComboBox1.Value) & "*" Then
Me.ListBox1.AddItem Hoja19.Cells(i, 2)
Me.ListBox1.List(Me.ListBox1.ListCount - 1, 1) = Hoja19.Cells(i, 3)
End If
Next i
End Sub