DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub sil() son = [C65000].End(3).Row For t = son To 1 Step -1 If Cells(t, "C") = Cells(t, "E") Then Rows(t).Delete End If Next End Sub
Sub mukerrer_sil()
Dim i
Dim son
son = Cells(Rows.Count, 3).End(3).Row
For i = 2 To son
Cells(i, 3).Select
If Cells(i, 3).Value = Cells(i, 5).Value Then
ActiveCell.EntireRow.Select
Selection.Delete Shift:=xlUp
End If
Next
End Sub
Denermisiniz
Kod:Sub mukerrer_sil() Dim i Dim son son = Cells(Rows.Count, 3).End(3).Row For i = 2 To son Cells(i, 3).Select If Cells(i, 3).Value = Cells(i, 5).Value Then ActiveCell.EntireRow.Select Selection.Delete Shift:=xlUp End If Next End Sub