Will check and update u soon.I'm selecting to print / non print the sheets
thanks
Sub UnselectSheetName()
Dim ws As Worksheet
With CreateObject("Scripting.Dictionary")
For Each ws In ActiveWindow.SelectedSheets
If Not IsNumeric(Application.Match(ws.Name, Array("Apple", "Orange", "Banana"), 0)) Then
.Item(ws.Name) = 1
End If
Next
Worksheets(.Keys).Select
.RemoveAll
End With
End Sub