I would addbefore your End Sub line.![]()
Sheets("False").Delete
Theshould be just after the Sub Title or variable declarations (Dim As)![]()
Application.DisplayAlerts = False
Theshould be added just after the sheets delete line and before End Sub.![]()
Application.DisplayAlerts = True
The Application.DisplayAlerts True/False lines are optional. When you delete a sheet in excel you will get a message asking if you are sure you want to delete the sheet(s). The display alerts = false keeps this from happening.
Bookmarks