Trevor3007
Well-known Member
- Joined
- Jan 26, 2017
- Messages
- 675
- Office Version
- 365
- Platform
- Windows
good day,
i have the the following code:-
however , i am struggling to find how to apply the data from D1 so that it renames the applicable worksheet tab ?
can any one solve for me?
KR
Trevor3007
i have the the following code:-
Code:
[/I]Private Sub Workbook_Open()If MsgBox("Do You Need To Insert Name ?", vbYesNo + vbQuestion) = vbNo Then Exit Sub
Dim myValue As Variant
myValue = InputBox("Enter Name")
Sheets("2").Range("D1").Value = Application.WorksheetFunction.Proper(myValue)
End Sub
[I]
however , i am struggling to find how to apply the data from D1 so that it renames the applicable worksheet tab ?
can any one solve for me?
KR
Trevor3007