- Katılım
- 1 Ağustos 2019
- Mesajlar
- 839
- Excel Vers. ve Dili
-
Türkçe excel 2016
İngilizce excel 2016
- Altın Üyelik Bitiş Tarihi
- 19-10-2021
Kod:
Sub listele()
Dim hcr As Range, j2 As Integer
'On Error Resume Next
For i = 1 To [A65536].End(xlUp).Row
x = Columns("B:B").Find(Cells(i, "A"), lookat:=xlWhole).Row
If Err.Number <> 0 Then
Err.Clear
Else
j2 = j2 + 1
Cells(j2, "F").Value = Cells(i, "A")
End If
Next
End Sub