- Katılım
- 12 Şubat 2006
- Mesajlar
- 411
- Excel Vers. ve Dili
- Office 365
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub ComboBox1_Change()
Set k = Sheets("Kayıtlar"): Set f = Sheets("Form")
f.ListBox1.ListFillRange = "": f.ListBox1.Clear
For ksat = 2 To k.Cells(Rows.Count, "A").End(3).Row
If k.Cells(ksat, "C") = f.ComboBox1 Then f.ListBox1.AddItem k.Cells(ksat, "B")
Next
End Sub
Merhaba.
Rich (BB code):Private Sub ComboBox1_Change() Set k = Sheets("Kayıtlar"): Set f = Sheets("Form") f.ListBox1.ListFillRange = "": f.ListBox1.Clear For ksat = 2 To k.Cells(Rows.Count, "A").End(3).Row If k.Cells(ksat, "C") = f.ComboBox1 Then f.ListBox1.AddItem k.Cells(ksat, "B") Next End Sub