Hi so what I am trying to do below is just add another tab, but I need to always add a tab and it to be second from first.
I have 15 tabs so I always want to add a new one as second tab and name it Errors. I tried worksheets (2) but debug.
[/CODE]
I have 15 tabs so I always want to add a new one as second tab and name it Errors. I tried worksheets (2) but debug.
Code:
[CODE]
Sub Macro3()
'
Sheets.Add After:=ActiveSheet
Sheets("Sheet1").Select
Sheets("Sheet1").Name = "Errors"
End Sub