https://www.dosyaupload.com/ju4n hazırladığım dosya ekte combobox1 de seçilen veri ye göre combobox2 den veri değişerek nasıl alabiliriz? yardımcı olabilirmisiniz?
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub ComboBox1_Change()
If ComboBox1.Value = "BUĞDAY" Then
tm = WorksheetFunction.CountA(Sheets("Veri").Range("B1:B20"))
ComboBox2.RowSource = "veri!B1:B" & tm
ElseIf ComboBox1.Value = "CEVİZ" Then
tm = WorksheetFunction.CountA(Sheets("Veri").Range("C1:C20"))
ComboBox2.RowSource = "veri!C1:C" & tm
ElseIf ComboBox1.Value = "ÇİLEK" Then
tm = WorksheetFunction.CountA(Sheets("Veri").Range("D1:D20"))
ComboBox2.RowSource = "veri!D1:D" & tm
Else
ComboBox2.RowSource = "veri!E1:E1"
End If
End Sub
Private Sub UserForm_Initialize()
sonkolon = Sheets("veri").Cells(1, 500).End(1).Column
ComboBox1.RowSource = "veri!a1: a5"
End Sub
Rica ederim.Dönüş yaptığınız için teşekkür ederim.teşekkürler
Kendi projeme uyarladım çok güzel çalışıyor. Ellerinize sağlık çok çok teşekkür ederim.Rica ederim.Dönüş yaptığınız için teşekkür ederim.