DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Option Explicit
Sub Unique_Data()
Dim Rng As Range, My_Data As Variant
For Each Rng In Range("A1:A" & Cells(Rows.Count, 1).End(3).Row)
If Rng.Value <> "" Then
With VBA.CreateObject("Scripting.Dictionary")
For Each My_Data In Split(Rng.Value, ",")
If Not .Exists(My_Data) Then
.Add My_Data, False
End If
Next
Rng.Value = Join(.Keys, ",")
End With
End If
Next
MsgBox "İşleminiz tamamlanmıştır.", vbInformation
End Sub