Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 97
Default listing sheet tabs

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,302
Default listing sheet tabs

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 97
Default listing sheet tabs

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
sheet tabs is checked but I can't see my tabs 3091Director Excel Discussion (Misc queries) 2 March 15th 10 03:46 AM
tabs are missing even though 'tools-options-view-sheet tabs' ok? rgranell Excel Worksheet Functions 3 August 16th 08 04:25 PM
Ranking Question Listing Same Sheet! Killer Excel Discussion (Misc queries) 3 June 7th 07 02:12 AM
Listing of Sheet names Will Fleenor Excel Worksheet Functions 1 November 17th 04 05:19 PM
Listing External Worksheet references to your sheet Dave Bash Excel Programming 0 January 7th 04 06:19 PM


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

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"