DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
	Altın Üyelik Hakkında Bilgi
Private Sub TextBox1_Change()
    Application.ScreenUpdating = False
    Range("IO:IV").Clear
    [A1].AutoFilter Field:=4, Criteria1:="=" & TextBox1 & "*"
    If [B65536].End(3).Row = 1 Then
    ListBox1.RowSource = ""
    ListBox1.Enabled = False
    Selection.AutoFilter
    Exit Sub
    End If
    Range("A2:H" & [B65536].End(3).Row).Copy Range("IO2")
    Selection.AutoFilter
    ListBox1.RowSource = "IO2:IV" & [IR65536].End(3).Row
    ListBox1.Enabled = True
    Cells.EntireColumn.AutoFit
    Application.ScreenUpdating = True
End Sub
Private Sub UserForm_QueryClose(Cancel As Integer, CloseMode As Integer)
    Range("IO:IV").Clear
End Sub