Sub SupprimeEXPIRE()
Application.ScreenUpdating = False
With ListObjects(1).Range
.Columns(8).Insert xlToRight 'insère une colonne auxiliaire
.Columns(8) = "=ROW()": .Columns(8) = .Columns(8).Value 'numérotation
.Sort .Columns(9), xlAscending, Header:=xlYes 'tri pour regrouper et accélérer
On Error Resume Next 'si aucune SpecialCell
.Columns(9).SpecialCells(xlCellTypeFormulas, 2).Delete xlUp
.Sort .Columns(8), xlAscending, Header:=xlYes 'tri dans l'ordre initial
.Columns(8).Delete xlToLeft 'supprime la colonne auxiliaire
End With
End Sub