Trying to add a worksheet and name it "For Export" Throwing error on the set WS line, "Method 'Add' of object 'Sheets' failed" Thanks in advance.
Dim WS As Worksheet
'Add sheet named "For Export"
Set WS = Sheets.Add(After:=Sheets(Worksheets.Count))
WS.Name = "For Export"
Sheets("For Export").Select
Set ws = Worksheets.Add(after:=Sheets(Worksheets.Count))work?