Set Template = Sheets("Template")
Template.Select
Template.Copy After:=Template
Sheets("Template (2)").Name = "ABL"
Hello all,
The code above is working to copy one sheet and move to a new sheet. However, I want to paste into the new sheet as values. I'm not sure how to do that...