Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
How do I create a link so that the name of my sheet is equal to data in a
cell? Currently I am re-naming each sheet tab, there has to be an easier way? Thank you |
#2
![]() |
|||
|
|||
![]()
You need VBA
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range) If Target.Address = "$A$1" Then Sh.Name = Target.Value End If End Sub put the code in the ThisWorkbook code module. -- HTH RP (remove nothere from the email address if mailing direct) "Maria" wrote in message ... How do I create a link so that the name of my sheet is equal to data in a cell? Currently I am re-naming each sheet tab, there has to be an easier way? Thank you |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Transfer data from sheet to sheet | Excel Discussion (Misc queries) | |||
Linking sheets to a summary sheet in workbook | Excel Discussion (Misc queries) | |||
linking multiple sheets to a summary sheet | Excel Discussion (Misc queries) | |||
Function to automatically insert a new sheet as a result of data entry? | Excel Worksheet Functions | |||
Naming & renaming a sheet tab | Excel Worksheet Functions |