Arkadaşlar merhaba. Aşağıdaki kod "C" sütunundaki mükerrer kayıtları buluyor ve satırı siliyor. Benim problemim ise bu "C" sütunun yanında "A" sütununu da eklemek. Yani A ve C sütundakiler aynı ise o satırı silmesini sağlamak. Bunu nasıl sağlayabilirim. Teşekkürler.
For C = [c65536].End(3).Row To 1 Step -1
If WorksheetFunction.CountIf(Range("c1:c" & C), Cells(C, "c")) > 1 Then
Rows(C).Delete
End If
Next
For C = [c65536].End(3).Row To 1 Step -1
If WorksheetFunction.CountIf(Range("c1:c" & C), Cells(C, "c")) > 1 Then
Rows(C).Delete
End If
Next