Sub DeleteSheets()
Dim sht As Worksheet
Application.ScreenUpdating = False
For Each sht In Worksheets
If sht.Name <> "HOME" Then
If sht.Name <> "ONE" Then
If sht.Name <> "TWO" Then
Application.DisplayAlerts = False
sht.Delete
Application.DisplayAlerts = True
End If
End If
End If
Next sht