Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
michael
 
Posts: n/a
Default view list of worksheets contained within a workbook

how do i view list of worksheets contained within a workbook in excell?
  #2   Report Post  
Peo Sjoblom
 
Posts: n/a
Default

Right click one of the sheet tab arrows at the left hand side
Only other option is to us VBA (macro)

--

Regards,

Peo Sjoblom

"michael" wrote in message
...
how do i view list of worksheets contained within a workbook in excell?



  #3   Report Post  
Gord Dibben
 
Posts: n/a
Default

A macro to list the sheets on a new worksheet.

Private Sub ListSheets()
'list of sheet names starting at A1
Dim Sh As Worksheet
Dim Rng As Range
Dim i As Integer
Worksheets.Add
Set Rng = Range("A1")
For Each Sh In ActiveWorkbook.Sheets
Rng.Offset(i, 0).Value = Sh.Name
i = i + 1
Next Sh
End Sub


Gord Dibben Excel MVP

On Tue, 22 Feb 2005 06:31:03 -0800, "michael"
wrote:

how do i view list of worksheets contained within a workbook in excell?


  #4   Report Post  
JonM4
 
Posts: n/a
Default

"michael" wrote:

how do i view list of worksheets contained within a workbook in excel?


You can also click on "File", drop to "Properties" and then click on the
"Contents" tab to see the list of worksheets
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
Can one print a list of worksheet tab labels contained in a workb. Kelroy D B Excel Discussion (Misc queries) 1 January 27th 05 07:03 PM
print a list of worksheets and links Bottle Excel Worksheet Functions 1 December 8th 04 02:13 PM
List of Worksheets in a work book Bottle Excel Worksheet Functions 2 December 8th 04 12:17 PM
Consolidate list from multiple worksheets VT Excel Worksheet Functions 0 November 24th 04 04:51 PM
To view different sheets using a drop down list Laila Excel Worksheet Functions 2 November 17th 04 08:17 AM


All times are GMT +1. The time now is 08:07 AM.

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

About Us

"It's about Microsoft Excel"