Hi Everyone, I apologize in advance for my rudimentary excel skills - I'm just learning this fantastic language. In my current project, I would like to have a sheet name updated based on a user input into a specific cell. I am currently using the formula:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$B$1" Then
Name = [b1].Text
End If
End Sub
What I wish to accomplish is to have a user input a name into a previous sheet, and have that input become this sheets name. Is this possible? and if so, please help!
Thanks
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$B$1" Then
Name = [b1].Text
End If
End Sub
What I wish to accomplish is to have a user input a name into a previous sheet, and have that input become this sheets name. Is this possible? and if so, please help!
Thanks