Excel file with over 50 worksheets - need scroll menu on the first worksheet with all other worksheets

JBijl

New Member
Joined
Jun 10, 2010
Messages
25
Hi,

First of all - thank you for being willing to look at my issue.

I have a workbook with over 50 worksheets (tabs). Now scrolling between these worksheets to find the correct one is tedious and unpractical. Is there a way to make some kind of scroll menu on the first worksheet that shows all the different other worksheets so I can simply scroll through those?

Most ideally this scroll menu would automatically include new worksheets that will be made after creating this scroll menu.

Thanks in advance for helping and please let me know if I am being unclear.

Jack
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Right click any of the arrows bottom left and a menu shows.

Thanks Armando,

That is basically what I was looking for but then would love to have something like that as a scroll menu on the first worksheet. The file needs to go to clients and it is not very practical to explain that (very practical) tip you gave.

It needs to be super easy and clearly visible....

Thanks again for the handy tip - I will certainly be using it personally... ;););)
 
Upvote 0

Thanks again for the help... It really helped me in the right direction. I ended up writing up a new Macro though. For your info, see below:

Dim WSM As Worksheet
Dim WS As Worksheet
Set WSM = Worksheets("Base Page")

Ctr = 0

For Each WS In ActiveWorkbook.Worksheets
If Not WS.Name = "Base Page" Then
WSM.Activate
WSM.Cells(1 + Ctr, 6).Select
WSM.Hyperlinks.Add Anchor:=Selection, _
Address:="", _
SubAddress:=WS.Name & "!A1", _
TextToDisplay:=WS.Name
Ctr = Ctr + 1
End If
Next WS
 
Upvote 0

Forum statistics

Threads
1,216,038
Messages
6,128,447
Members
449,453
Latest member
jayeshw

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top