I have a module where I have to create multiple copies of a worksheet and put them in order, and I am using code like this:
Sheets("x").Copy After:=Sheets("x") Sheets("x (2)").Name = "y" Set w3 = Sheets("y") Sheets("y").Copy After:=Sheets("y") Sheets("y (2)").Name = "z" Set w4 = Sheets("z")
As this occurs numerous times, is there a more compact approach?