Hello,
I have entered the following code into the tab view code field and it works well when I manually change this field. However D1 references another sheet and when I change it in the other sheet D1 changes, but not the sheet tab name, ideas?
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address(False, False) = "D1" Then Me.Name = "Report Summary " & Target.Value
End Sub
I have entered the following code into the tab view code field and it works well when I manually change this field. However D1 references another sheet and when I change it in the other sheet D1 changes, but not the sheet tab name, ideas?
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address(False, False) = "D1" Then Me.Name = "Report Summary " & Target.Value
End Sub