Sub Filtre()
Dim DLA%, DLE%, La%, Le%, F
Application.ScreenUpdating = False
DLA = Range("A65500").End(xlUp).Row
DLE = Range("E65500").End(xlUp).Row
Range("F2:F65000").ClearContents
For La = 2 To DLA
F = Cells(La, "A")
For Le = 2 To DLE
If Application.CountIf([E:E], F) > 0 Then
Cells(La, "F") = "X"
Exit For
End If
Next Le
Next La
ActiveSheet.Range("$F$1:$F$22").AutoFilter Field:=1, Criteria1:="<>"
End Sub
Sub FiltreOFF()
Application.ScreenUpdating = False
Range("F2:F65000").ClearContents...