Hi,
The following code copies an existing worksheet:
What I need to do is rename the copied worksheet to the value in QNSheet. I tried using a variation of examples that I found in some posts but receive run-time errors.
Any help would greatly be appreciated.
Thanks,
The following code copies an existing worksheet:
Code:
QNSheet = "QN " & Application.UserName
With Sheets("Quick Notes")
.Copy After:=Sheets(Sheets.Count)
End With
What I need to do is rename the copied worksheet to the value in QNSheet. I tried using a variation of examples that I found in some posts but receive run-time errors.
Any help would greatly be appreciated.
Thanks,