Johnny
You can paste this code into the sheet module of those you wish to rename
automatically.
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
If Target.Cells.Count > 1 Then Exit Sub
If Intersect(Target, Me.Range("A1")) Is Nothing Then Exit Sub
On Error GoTo CleanUp
Application.EnableEvents = False
Me.Name = Range("A1").Text
CleanUp:
Application.EnableEvents = True
End Sub
This is sheet event code.
Right-click on the sheet tab and "View Code"
Copy/paste the above into that sheet module.
Change the value of A1 and sheet name will follow.
Gord Dibben MS Excel MVP
I meant to say that I did not want to rename all of the tabs in the workbook.
I do however wish to auto re-name only a select view base on the cells
contents in that tab.
Gord Dibben MS Excel MVP