Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am trying to summarize my worksheets (100) into one summary page.
I need a list of tab names (to start). The list may change. Any advice? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
hi
this will create a list of worksheet names on an activesheet. Sub testI() Dim WS As Worksheet Dim r As Range Dim rd As Range Set r = Range("A2") For Each WS In Worksheets Set rd = r.Offset(1, 0) r.Value = WS.Name Set r = rd Next End Sub regards FSt1 "Mich" wrote: I am trying to summarize my worksheets (100) into one summary page. I need a list of tab names (to start). The list may change. Any advice? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
List of worksheet names | Excel Discussion (Misc queries) | |||
Extract data from list for Summary worksheet. | Excel Discussion (Misc queries) | |||
want a list of selectable names on my worksheet | Excel Worksheet Functions | |||
how can you list all of the worksheet names in a file | Excel Discussion (Misc queries) | |||
Creating a list of worksheet names on a Summary PAge | Excel Worksheet Functions |