- Katılım
- 27 Temmuz 2010
- Mesajlar
- 19
- Excel Vers. ve Dili
- MİCROSOFT 2003
DİL İNGİLİZCE
Private Sub TextBox1_Change()
Dim sonuc2 As Double
If TextBox1.Text = "" Then
If ActiveSheet.AutoFilterMode = True Then ActiveSheet.AutoFilterMode = False
Exit Sub
End If
sonuc2 = TextBox1.Value
Range("A4").AutoFilter
Range("A4").AutoFilter Field:=1, Criteria1:=TextBox1.Value
End Sub