Deleting WorkSheets MANY
Application.DisplayAlerts = False
Worksheets("3").Delete
Application.DisplayAlerts = False
Worksheets("4").Delete
Application.DisplayAlerts = False
Worksheets("5").Delete
Is there a way to adapt the above code to simply delete ALL sheets than 2
Tried WorkSheets.Delete"2"
but get an error
Corey....
|