Hi,
I have a workbook with 50 worksheets and a menu sheet.
On the menu sheet I created a Actixe X combobox filling it
with the fifty sheets.
I wish to be able to select from the combo box to go to a
particular sheet. I am using the following code which works fine
if I select and click but when I enter an alphabet it goes direct
to the first sheet which starts with what is entered in the combo
box instead of giving me options to select.
Private Sub ComboBox1_Click()If Me.ComboBox1.Value > "" Then Sheets(Me.ComboBox1.Value).Activate
ComboBox1.Value = ""
End Sub
Please note I have posted this on another blog.
- 7 views