Code:
Sub DelSheets()
Dim Arr As Variant
Dim Sht As Variant
Arr = Array("SUMMARY", "General", "INDUSTRY INITIAT", "SPECIAL PROJECTS", "CHRISTMAS SPEC", "AWARDS SHOW", "Music Fest")
Application.DisplayAlerts = False
For Each Sht In Arr
Sheets(Sht).Delete
Next Sht
Application.DisplayAlerts = True
End Sub
When I debug the code the error is happening:
Code:
Sheets(Sht).Delete
Any ideas as to what is causing the problem or any suggestions on how to fix?
Thanks for you help!