Bonjour,
Si j'ai bien compris la question est un peu différente, pour sélectionner l'ensemble des feuilles essayez ceci :
Public Sub SelectSheets()
' feuilles a ne pas selectionner
Dim blackList As Variant: blackList = Array("AA", "BB", "CC", "DD")
' recherche
Dim whiteList As Object: Set whiteList = CreateObject("system.collections.arraylist")
Dim ws As Worksheet, bl As Variant, canAdd As Boolean
For Each ws In ThisWorkbook.Worksheets
canAdd = True
For Each bl In blackList
canAdd = canAdd And CStr(bl) <> ws.Name
Next bl
If canAdd Then whiteList.Add ws.Name
Next ws
' selection
ThisWorkbook.Worksheets(whiteList.ToArray).Select
End Sub
NB: si vous avez une erreur sur la ligne Dim whiteList As Object: Set whiteList = CreateObject("system.collections.arraylist") je pourrais vous proposer une alternative.