Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How do I get a list of WS from a WB?
Jonah |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
John,
Try some code like Sub AAA() Dim Dest As Range Dim WS As Worksheet Set Dest = Range("A1") 'change as desired For Each WS In ThisWorkbook.Worksheets Dest.Value = WS.Name Set Dest = Dest(2, 1) Next WS End Sub -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "John Scott" wrote in message ... How do I get a list of WS from a WB? Jonah |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Filterered list to new worksheet | Excel Worksheet Functions | |||
Create a list in one worksheet of the other worksheets' names | Excel Worksheet Functions | |||
how do i link a list of items in a workbook to worksheets in the . | Excel Discussion (Misc queries) | |||
How do I use multiple worksheets (List) in a Pivot Table Report? | Excel Worksheet Functions | |||
Consolidate list from multiple worksheets | Excel Worksheet Functions |