Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a model that has several sheets. I would like to have a drop-down menu
on the menu toolbar that would allow me to move select the sheet I want to go to by using a dropdown menu. Any help would be appreciated. Thanks. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
In case you didn't know, if you right-click on the navigation arrows at bottom
left you will get a list of sheets to choose from. You could also use a Data Validation drop-down list and some event code to take you to the chosen sheet. Private Sub Worksheet_Change(ByVal Target As Range) If Intersect(Target, Me.Range("A1")) Is Nothing Then Exit Sub On Error GoTo endit Application.EnableEvents = False Select Case Target.Value Case "1" Sheets("Sheet1").Select Case "2" Sheets("Sheet2").Select End Select endit: Application.EnableEvents = True End Sub This is sheet event code. Right-click on the sheet tab and "View Code". Copy and paste into that module. Adjust range and parameters to suit. If that won't do the job here's a post by Dave Peterson Start Dave post................................. For additions to the worksheet menu bar, I really like the way John Walkenbach does it in his menumaker workbook: http://j-walk.com/ss/excel/tips/tip53.htm Here's how I do it when I want a toolbar: http://www.contextures.com/xlToolbar02.html (from Debra Dalgleish's site) End Dave post........................... Gord Dibben MS Excel MVP On Sun, 31 Dec 2006 16:50:00 -0800, gregesau wrote: I have a model that has several sheets. I would like to have a drop-down menu on the menu toolbar that would allow me to move select the sheet I want to go to by using a dropdown menu. Any help would be appreciated. Thanks. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
create a new worksheet when a cell has a date entered | New Users to Excel | |||
Open worksheet at specific cell | Excel Discussion (Misc queries) | |||
How to create a drop down button on a worksheet? | Excel Worksheet Functions | |||
How to name cells using same name yet specific to worksheet in Exc | Excel Worksheet Functions | |||
worksheet menu bar | Excel Discussion (Misc queries) |