DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub KosulaUymayanlarinListesi()
Dim i As Long
Dim j As Long
Dim Bul As Range
Application.ScreenUpdating = False
j = 1
For i = 2 To [A65536].End(3).Row
Set Bul = Range("H:H").Find(Cells(i, "A"), LookIn:=xlValues, LookAt:=xlWhole)
If Not Bul Is Nothing Then
j = j + 1
Cells(j, "B") = Cells(i, "A")
End If
Next i
Application.ScreenUpdating = True
MsgBox "İşlem Tamam"
End Sub