- Katılım
- 6 Eylül 2004
- Mesajlar
- 239
- Excel Vers. ve Dili
- Excel 2013 Türkçe
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub ComboBox1_Change()
Dim yer as Integer
ListBox1.Clear
yer = Sheets("Sipariş").Range("c2:c11").Find(ComboBox1.Text).Row
ListBox1.AddItem Sheets("Sipariş").Cells(yer, 1) & "------" & Sheets("Sipariş").Cells(yer, 2) & "------" & Sheets("Sipariş").Cells(yer, 3) & "------" & Sheets("Sipariş").Cells(yer, 4)
End Sub
Private Sub ListBox1_Click()
Range("I3").Value = Left(ListBox1, 4)
End Sub