DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
if komutu ile yapabilirsin örnekteki gibi
Kod:If ComboBox1 = "" Then Exit Sub if combobox1.value ="Ahmet" then Sheets("Mehmet").Activate End if
Dosyanız buradadır.
Private Sub ComboBox1_Change()
Sheets(ComboBox1.List(ComboBox1.ListIndex, 1)).Activate
End Sub
Private Sub UserForm_Initialize()
ComboBox1.ColumnCount = 2
ComboBox1.ColumnWidths = "75;0"
ComboBox1.RowSource = "isimler!c5:d" & [isimler!d60].End(3).Row
End Sub
Kod:Private Sub ComboBox1_Change() Sheets(ComboBox1.List(ComboBox1.ListIndex, 1)).Activate End Sub Private Sub UserForm_Initialize() ComboBox1.ColumnCount = 2 ComboBox1.ColumnWidths = "75;0" ComboBox1.RowSource = "isimler!c5:d" & [isimler!d60].End(3).Row End Sub