- Katılım
- 17 Aralık 2013
- Mesajlar
- 14
- Excel Vers. ve Dili
- excel 2010 türkçe
excel 2013 türkçe
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub CommandButton1_Click()
Selection.AutoFilter Field:=1
TextBox1.Value = ""
End Sub
Private Sub TextBox1_Change()
On Error Resume Next
METİN2 = TextBox1.Value
Set FC2 = Range("A3:A16000").Find(What:=METİN2)
Application.Goto Reference:=Range(FC2.Address), _
Scroll:=False
Selection.AutoFilter Field:=1, Criteria1:="*" & TextBox1.Value & "*"
If METİN2 = "" Then
Selection.AutoFilter Field:=1
End If
End Sub