ThisWorkbook.Sheets("Project Template").Copy After:=Sheets(Sheets.Count)
Set ws = ActiveSheet
Naming = CallLaunched.Value & " - " & ProjectLead.Value
ws.Name = Naming
It is possible that 'Naming' could be the same as a previously generated sheet and therefore throws up an error. What would be the best way to handle this?
Would it be best to just use an Error Goto? If so would the handler only apply to the Naming line?