Sub Statut_14()
Dim NoCol As Integer
NoCol = Application.Match("Statut vente", Range("1:1"), 0) ' recherche de la bonne colonne
If pressed = True Then
ActiveSheet.ListObjects("Suivi_M53").Range.AutoFilter Field:=NoCol, Criteria1:="14" = False
End If
If pressed = False Then
ActiveSheet.ListObjects("Suivi_M53").Range.AutoFilter Field:=NoCol, Criteria1:="14" = True
End If
End Sub