Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a workbook in which users will be wanting to
recreate one worksheet. Is there a way to display the sheet tabs in a listbox or combo box? And from there the user select the sheet tab name to go to it? Thanks for any assistance. *** John |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi John,
Jim Rech ( I believe) posted the following code, which tou can invoke with a toolbar or worksheet button: Sub ShowSheetList() 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 --- Regards, Norman "John" wrote in message ... I have a workbook in which users will be wanting to recreate one worksheet. Is there a way to display the sheet tabs in a listbox or combo box? And from there the user select the sheet tab name to go to it? Thanks for any assistance. *** John |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Norman (and Jim),
Thanks. Perfect for what I needed. *** John -----Original Message----- Hi John, Jim Rech ( I believe) posted the following code, which tou can invoke with a toolbar or worksheet button: Sub ShowSheetList() 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 --- Regards, Norman "John" wrote in message ... I have a workbook in which users will be wanting to recreate one worksheet. Is there a way to display the sheet tabs in a listbox or combo box? And from there the user select the sheet tab name to go to it? Thanks for any assistance. *** John . |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
sheet tabs is checked but I can't see my tabs | Excel Discussion (Misc queries) | |||
tabs are missing even though 'tools-options-view-sheet tabs' ok? | Excel Worksheet Functions | |||
Ranking Question Listing Same Sheet! | Excel Discussion (Misc queries) | |||
Listing of Sheet names | Excel Worksheet Functions | |||
Listing External Worksheet references to your sheet | Excel Programming |