This macro from a recent post by Gord Dibben looks just the job ..
so there's no need to wait <g>
-------------------------
From: Gord Dibben (gorddibbATshawDOTca)
Subject: Re: sheet tab names
View: Complete Thread (5 articles)
Original Format
Newsgroups: microsoft.public.excel
Date: 2004-03-10 16:55:48 PST
Dave
Sub ShowNames()
Set wkbkToCount = ActiveWorkbook
iRow = 1
With Sheets.Add
For Each ws In wkbkToCount.Worksheets
.Rows(iRow).Cells(1).Value = ws.Name
iRow = iRow + 1
Next
End With
End Sub
Gord Dibben Excel MVP
Is there a quick way to list all sheet tab names into a
given sheet column for quick reference purposes?
tia,
Dave
----------------------------
--
Rgds
Max
xl 97
--
Please respond, in newsgroup
xdemechanik <at>yahoo<dot>com
---
Anne said:
Perhaps this feature could be added to the next release of Excel.
Certainly the Accounting community would love to easily print a list of all
the tab names within some of their Excel workbooks.