Forum Discussion
Budman361530
Jul 11, 2022Brass Contributor
Adding a new sheet macro.
So I have been using this Macro to add a sheet in a excel spreadsheet for sometime, and it works well.... Sub Add_New_Equipment() ' ' Add_newjobsheet Macro ' ' Sheets("Original").Select Sheet...
HansVogelaar
Jul 11, 2022MVP
Sub Add_New_Equipment()
With Sheets("Original")
.Visible = xlSheetVisible
.Copy Before:=Sheets(2)
.Visible = xlSheetHidden
End With
Sheets("Equipment List").Select
End SubBudman361530
Jul 17, 2022Brass Contributor
Hans,
Just had a few minutes to play with this and it works well. Thank you for the assistance.
Just had a few minutes to play with this and it works well. Thank you for the assistance.