Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
is there any way to create a list of all the tabs of a workbook on one worksheet? thanks
|
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
Am Fri, 25 Oct 2013 12:06:44 -0700 (PDT) schrieb : is there any way to create a list of all the tabs of a workbook on one worksheet? thanks try: Sub Tabs() Dim wsh As Worksheet Dim i As Integer For Each wsh In ThisWorkbook.Worksheets i = i + 1 Sheets("Sheet1").Cells(i, 1) = wsh.Name Next End Sub Regards Claus B. -- Win XP PRof SP2 / Vista Ultimate SP2 Office 2003 SP2 /2007 Ultimate SP2 |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
On Friday, October 25, 2013 3:14:51 PM UTC-4, Claus Busch wrote:
Hi, Am Fri, 25 Oct 2013 12:06:44 -0700 (PDT) schrieb : is there any way to create a list of all the tabs of a workbook on one worksheet? thanks try: Sub Tabs() Dim wsh As Worksheet Dim i As Integer For Each wsh In ThisWorkbook.Worksheets i = i + 1 Sheets("Sheet1").Cells(i, 1) = wsh.Name Next End Sub Regards Claus B. -- Win XP PRof SP2 / Vista Ultimate SP2 Office 2003 SP2 /2007 Ultimate SP2 works great, thank you Claus. One more thing, in the adjacent column I would like to reference data in a specific cell from the corresponding tab. thanks again. |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
Am Fri, 25 Oct 2013 13:07:49 -0700 (PDT) schrieb : One more thing, in the adjacent column I would like to reference data in a specific cell from the corresponding tab. thanks again. what do you want to have? The range address of each tab? Regards Claus B. -- Win XP PRof SP2 / Vista Ultimate SP2 Office 2003 SP2 /2007 Ultimate SP2 |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
On Friday, October 25, 2013 4:10:19 PM UTC-4, Claus Busch wrote:
Hi, Am Fri, 25 Oct 2013 13:07:49 -0700 (PDT) schrieb : One more thing, in the adjacent column I would like to reference data in a specific cell from the corresponding tab. thanks again. what do you want to have? The range address of each tab? Regards Claus B. -- Win XP PRof SP2 / Vista Ultimate SP2 Office 2003 SP2 /2007 Ultimate SP2 I would like to have a worksheet that lists all tabs in the workbook and also references a specific cell in each tab next to the tab name on the worksheet |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Print workbook tabs based on a selection list | Excel Discussion (Misc queries) | |||
List of workbook tabs | Excel Worksheet Functions | |||
How do I generate a list of the tabs/worksheets from a workbook? | Excel Worksheet Functions | |||
How do I print out a list of the tabs in an Excel workbook? | Excel Discussion (Misc queries) | |||
Print Spreadsheet tabs in a Workbook to a List? | Excel Discussion (Misc queries) |