Sub test()
Dim tablo, i&, x$, n&
tablo = Sheets("Feuil1").[A1].CurrentRegion.Resize(, 2) 'matrice, plus rapide, au moins 2 éléments
For i = 2 To UBound(tablo)
x = tablo(i, 1)
If x Like "E" & String(Len(x) - 1, "#") Then
n = n + 1
tablo(n, 1) = x
End If
Next
'---restitution---
With Sheets("Save")
If .FilterMode Then .ShowAllData 'si la feuille est filtrée
If n Then .[A2].Resize(n) = tablo
.[A2].Offset(n).Resize(.Rows.Count - n - 1).ClearContents 'RAZ en dessous
With .UsedRange: End With 'actualise la barre de défilement verticale
.Activate 'facultatif
End With
End Sub