How can I adjust this code to delete all worksheets but the "Summary"
worksheet. Would seem more efficient than the path I've started down
below, which was to name all the worksheets BUT the Summary.
Sub DeleteWorksheets()
Application.DisplayAlerts = False
Sheets("Sheet1").Delete
ActiveSheet.Delete
Sheets("Sheet2").Delete
ActiveSheet.Delete
Application.DisplayAlerts = True
End Sub