Assign a name to worksheet tabs by code
How would you write this if you are wanting the tab to be named for a specific cell, of another worksheet in the same workbook?
----- JMMach, MCSC wrote: -----
Sub RenameSheetTab()
ActiveSheet.Name = "New Name"
'or
Sheets("New Name").Name = "Renamed"
'where "New Name" is the existing name on the sheet tab
'or
Sheet3.Name = "New Sheet3"
'where "Sheet3" is the name of the Microsoft Excel Object in the VBE
Project Explorer
'The Microsoft Excel Objects are listed as ObjectName(SheetTabName)
'example: Sheet3(New Sheet3)
End Sub
TTFN
JMMach
"hglamy" wrote in message
...
Hello there,
how can I - if at all - name or rename
XL worksheet tabs programmatically ?
Thank you in advance,
Kind regards,
H.G. Lamy
|