How can I copy a worksheet and rename at the same time?
G Gary''s Student Jul 25, 2008 #2 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
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