I am trying to use a dropdown box as a menu system
so a user can jump through worksheets froma front page.
I have seen lots of snippits of code that appear to do what I want but none seem to work for me.
i.e. http://www.mrexcel.com/forum/showthread.php?t=362630&highlight=dropdown
I have a selection macro which works but need to activate it via the dropdown. I guess a chage event is needed......or am I mistaken.
so a user can jump through worksheets froma front page.
I have seen lots of snippits of code that appear to do what I want but none seem to work for me.
i.e. http://www.mrexcel.com/forum/showthread.php?t=362630&highlight=dropdown
I have a selection macro which works but need to activate it via the dropdown. I guess a chage event is needed......or am I mistaken.
Rich (BB code):
Sub Selection()
Rich (BB code):
Select Case Range("AF16").Value
Case 1
Sheets("Asparagus").Visible = True
Sheets("Asparagus").Select
Sheets("Intro").Visible = False
Case 2
Sheets("Broccoli Cauli").Visible = True
Sheets("Broccoli Cauli").Select
Sheets("Intro").Visible = False
Case 3
Sheets("Peas Beans").Visible = True
Sheets("Peas Beans").Select
Sheets("Intro").Visible = False
Case 4
Sheets("Prep Basic Solo").Visible = True
Sheets("Prep Basic Solo").Select
Sheets("Intro").Visible = False
Case 5
Sheets("Prep Mixed Bag").Visible = True
Sheets("Prep Mixed Bag").Select
Sheets("Intro").Visible = False
Case 6
Sheets("Prep Single Packs").Visible = True
Sheets("Prep Single Packs").Select
Sheets("Intro").Visible = False
Case 7
Sheets("Speciality Veg").Visible = True
Sheets("Speciality Veg").Select
Sheets("Intro").Visible = False
Case 8
Sheets("Stirfry").Visible = True
Sheets("Stirfry").Select
Sheets("Intro").Visible = False
End Select
End Sub
Last edited: