benzemeyenler

Orion1

Uzman
Uzman
Katılım
1 Mart 2005
Mesajlar
22,254
Excel Vers. ve Dili
Win7 Home Basic TR 64 Bit

Ofis-2010-TR 32 Bit
Dosyanız ektedir.:cool:
Kod:
Sub varmi()
Dim sat As Long, i As Long, sat2 As Long
Application.ScreenUpdating = False
Range("E:E").ClearContents
sat = Cells(65536, "A").End(xlUp).Row
For i = 1 To Cells(65536, "B").End(xlUp).Row
    If WorksheetFunction.CountIf(Range("A1:A" & sat), Cells(i, "B").Value) = 0 Then
        sat2 = sat2 + 1
        Cells(sat2, "E").Value = Cells(i, "B").Value
    End If
Next i
Application.ScreenUpdating = True
MsgBox "Bulunmayanlar E sütununa Listelendi.", vbOKOnly + vbInformation, "EVREN"
End Sub
 

Ekli dosyalar

Üst