ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Is there a shortcut to view a list of all worksheets and navigate (https://www.excelbanter.com/excel-discussion-misc-queries/159677-there-shortcut-view-list-all-worksheets-navigate.html)

Willem Jan

Is there a shortcut to view a list of all worksheets and navigate
 
I know you can right click on the tab scrolling buttons to get a (short) list
of all worksheets and the option 'More sheets...' opens a window called
"Activate". is there a keyboard shortcut or a macro to invoke that "Activate"
window?

Max

Is there a shortcut to view a list of all worksheets and navigate
 
Here's a sub by Jim Rech

Sub SheetNav()
On Error Resume Next
If ActiveWorkbook.Sheets.Count <= 16 Then
Application.CommandBars("Workbook Tabs"). _
ShowPopup 500, 225
Else
Application.CommandBars("Workbook Tabs"). _
Controls("More Sheets...").Execute
End If
On Error GoTo 0
End Sub

--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Willem Jan" wrote:
I know you can right click on the tab scrolling buttons to get a (short) list
of all worksheets and the option 'More sheets...' opens a window called
"Activate". is there a keyboard shortcut or a macro to invoke that "Activate"
window?


Gord Dibben

Is there a shortcut to view a list of all worksheets and navigate
 
Thanks for posting this Max.

One I had not seen before.

Also thanks to Jim for the code.


Gord Dibben MS Excel MVP

On Tue, 25 Sep 2007 23:04:04 -0700, Max wrote:

Here's a sub by Jim Rech

Sub SheetNav()
On Error Resume Next
If ActiveWorkbook.Sheets.Count <= 16 Then
Application.CommandBars("Workbook Tabs"). _
ShowPopup 500, 225
Else
Application.CommandBars("Workbook Tabs"). _
Controls("More Sheets...").Execute
End If
On Error GoTo 0
End Sub



Max

Is there a shortcut to view a list of all worksheets and navigate
 
Pleasure, Gord.
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---




All times are GMT +1. The time now is 12:50 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com