Koşula Göre Mükerrer kayıtları silme

Ömer

Moderatör
Yönetici
Katılım
18 Ağustos 2007
Mesajlar
22,184
Excel Vers. ve Dili
Microsoft 365 Tr
Ofis 2016 Tr
Merhaba,

Deneyiniz.
Kod:
Sub mukerrer_sil()

    Dim son As Long
   
    Application.ScreenUpdating = False
    Application.DisplayAlerts = False
   
    son = Cells(Rows.Count, "A").End(xlUp).Row
    Range("A1:F" & son).Sort Key1:=Range("C1"), Order1:=xlDescending
    Range("A1:F" & son).RemoveDuplicates Columns:=Array(1, 2), Header:=xlYes

    Application.ScreenUpdating = True
    Application.DisplayAlerts = True
   
End Sub
.
 

Ekli dosyalar

Üst