viewing multiple worksheet tabs

M

mister harabi

hello.
can someone tell me if there is an alternative to viewing multiple
worksheet tabs in an excel workbook. with multiple sheet tabs only
displayed at the bottom of the workbook, it is difficult to move easily
between sheets. is there an option to view sheets in a "menu" style or
"table of contents" style somewhere else on the page?
thank you
mister harabi
 
B

Bernard Rey

mister harabi:
can someone tell me if there is an alternative to viewing multiple
worksheet tabs in an excel workbook. with multiple sheet tabs only
displayed at the bottom of the workbook, it is difficult to move easily
between sheets. is there an option to view sheets in a "menu" style or
"table of contents" style somewhere else on the page?

A right-clic (control-clic) on the arrows at bottom left (next to the sheet
tabs) will display a menu listing the visible sheets in the current workbook
 
J

JE McGimpsey

mister harabi said:
hello.
can someone tell me if there is an alternative to viewing multiple
worksheet tabs in an excel workbook. with multiple sheet tabs only
displayed at the bottom of the workbook, it is difficult to move easily
between sheets. is there an option to view sheets in a "menu" style or
"table of contents" style somewhere else on the page?

In addition to the control that Bernard mentioned, you can use the Sheet
List control to bring up a dialog with a menu of worksheets in the
active workbook.

The control isn't in the Customize Toolbars dialog, so run this macro to
create a custom toolbar with a button that brings up the dialog

Public Sub AddSheetSelectionControlBar()
With CommandBars.Add(Name:="MyCustomBar", Temporary:=True)
With .Controls.Add(Type:=msoControlButton, Id:=957)
.FaceId = 461
.TooltipText = "Sheet List"
End With
.Visible = True
End With
End Sub

You can then select Tools/Customize/Customize Toolbars/Menus... and drag
the control to whatever toolbar you wish.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top