Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Is there a way to go thru the list of tabs, and read their names from within
a cell? Is there a function to do that? Thanks, Stefano |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
The following function:
Function tabname(i As Integer) As String If i Worksheets.Count Then tabname = "" Exit Function End If tabname = Worksheets(i).Name End Function will return the name of the i th worksheet. For example: =tabname(3) will return the name of the third worksheet. -- Gary's Student "smaruzzi" wrote: Is there a way to go thru the list of tabs, and read their names from within a cell? Is there a function to do that? Thanks, Stefano |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
not clear how you want this but
for each ws in worksheets msgbox ws.name next ws -- Don Guillett SalesAid Software "smaruzzi" wrote in message ... Is there a way to go thru the list of tabs, and read their names from within a cell? Is there a function to do that? Thanks, Stefano |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Reading tabs name | Excel Discussion (Misc queries) | |||
How can I make the names for Sheet tabs a reference to a cell? | Excel Discussion (Misc queries) | |||
look up names in one excel tab to find a match in another tab | Excel Discussion (Misc queries) | |||
finding the common names between columns | Excel Discussion (Misc queries) | |||
Have 2 columns of names - need to filter out names not duplicated | Excel Worksheet Functions |