Sub text()
Dim Plage As Range
Application.ScreenUpdating = False
With Sheets("Feuil1")
Set Plage = .Range("A2", .Cells(.Rows.Count, 2).End(xlUp)).Resize(, 6)
Plage.AutoFilter
Plage.AutoFilter 2, .[I1]
Set Plage = Plage.SpecialCells(xlCellTypeVisible)
Plage.Copy Sheets("Feuil2").[A1]
End With
Application.ScreenUpdating = True
End Sub