DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub CommandButton2_Click()
Set s1 = Sheets("Database")
[A6:F65536].ClearContents
d = 5
Application.ScreenUpdating = False
For b = 6 To s1.[B65536].End(3).Row
If UCase(Replace(Replace(s1.Cells(b, "C"), "ı", "I"), "i", "İ")) Like UCase(TextBox2.Value) & "*" Then
d = d + 1
Cells(d, "a") = s1.Cells(b, "c")
Cells(d, "b") = s1.Cells(b, "b")
Cells(d, "c") = s1.Cells(b, "d")
Cells(d, "d") = s1.Cells(b, "e")
Cells(d, "e") = s1.Cells(b, "f")
Cells(d, "f") = s1.Cells(b, "g")
End If
Next
Application.ScreenUpdating = True
ListBox2.RowSource = "A6:f" & [B65536].End(3).Row
Set s1 = Nothing
End Sub