I have a Macro button on a sheet (Line Item Summary) that creates a copy of Costing Sheet as a new worksheet. After the macro is done the active sheet is Line Item Summary but I would like it to be the sheet that was created. Here is the macro for the button:
Sub NewSheet()
Call Sheet7.NewLine
Worksheets("Costing Sheet").Copy After:=Worksheets("Costing Sheet")
ActiveSheet.Range("B6:F68").Value = ActiveSheet.Range("B6:F68").Value
End Sub
I was looking into using "Application or Activate" as a way to do this but being fairly new to VBA I'm not sure how or if there's a better way to execute this. Any help is appreciated!