View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Dnk Dnk is offline
external usenet poster
 
Posts: 8
Default List of Sheets

Try this:

Sub WorkSheetNames()
Dim sht As Worksheet
Dim mySht As Worksheet
Set mySht = Sheets("Sheet1")
Dim r As Integer
Dim c As Integer
r = 1
c = 1
For Each sht In Worksheets
mySht.Cells(r, c) = sht.Name
r = r + 1
Next sht
End Sub











"Jahsonn" wrote in message ...
Hi Guys....

Is there an easy way to list all sheet names from a
workbook in a sheet on the workbook?

TIA