sirkülasyon
Altın Üye
- Katılım
- 10 Temmuz 2012
- Mesajlar
- 2,518
- Excel Vers. ve Dili
- 2021 LTSC TR
- Altın Üyelik Bitiş Tarihi
- 18-06-2026
Kod:
Sub filtrele()
ListBox1.List = liste
If TextBox9 <> "" Then
For i = ListBox1.ListCount - 1 To 0 Step -1
If Not (ListBox1.List(i, 0) Like "*" & TextBox9.Text & "*") Then
ListBox1.RemoveItem (i)
End If
Next
End If
End Sub