Hello everyone
I currently use this code to name the active sheet tab based on the value of cell b8.
Is it possible to name another sheet tab (say sheet 49) based on the same calculation
Sub Worksheet_Name()
With ActiveSheet
.Name = .[b8].Value & " Business Drivers"
.[C5].Select
End With
End Sub
I currently use this code to name the active sheet tab based on the value of cell b8.
Is it possible to name another sheet tab (say sheet 49) based on the same calculation
Sub Worksheet_Name()
With ActiveSheet
.Name = .[b8].Value & " Business Drivers"
.[C5].Select
End With
End Sub