Copy worksheet and rename sheet

  • Thread starter Ernst - EXE Graphics
  • Start date
G

Gary''s Student

Put the new name in a cell, say A1 and run this macro:

Sub Macro1()
ActiveSheet.Copy After:=Sheets(1)
ActiveSheet.Name = Range("A1").Value
End Sub
 
Top