Hi Joanne,
Look at this discussion:
http://groups.google.com/group/microsoft.public.excel.worksheet.functions/browse
_frm/thread/32ce300545721b2e/a8b458779cf90a9b?lnk=st&q=&rnum=52#a8b458779cf90a9b
Note that the link may be split over more lines; paste them in one line in your browser

Signature
Kind regards,
Niek Otten
Microsoft MVP - Excel
| Is there a way in Excel 2003 to print out the names of all the
| worksheets in my workbook?
| Thank your for your help
| Joanne
Don't remember who in the group gave this to me, but it works good.......
Sub ListSheets()
'Lists all SheetNames in Workbook on new sheet called "SheetNames"
On Error Resume Next
Sheets.Add.Name = ("SheetNames")
For i = 1 To Worksheets.Count
Cells(i, "a") = Sheets(i).Name
Next i
End Sub
Vaya con Dios,
Chuck, CABGx3
> Is there a way in Excel 2003 to print out the names of all the
> worksheets in my workbook?
> Thank your for your help
> Joanne
Joanne - 08 Oct 2007 15:16 GMT
Thanks Chuck
I appreciate your efforts
Joanne
> Don't remember who in the group gave this to me, but it works good.......
>
[quoted text clipped - 14 lines]
> > Thank your for your help
> > Joanne