Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
If Intersect(Target, Range("E9:E" & Rows.Count)) Is Nothing Or Target(1) = "" Then Exit Sub
Cancel = True
With Sheets("Actions")
With .Range("A8:K" & .Cells.SpecialCells(xlCellTypeLastCell).Row)
If .Row < 8 Then Exit Sub
.AutoFilter 4, Target 'filtre automatique
End With
.Activate 'facultatif
End With
End Sub