Sub CopierCollerNonMasquées()
Dim DL%, DL2%
Application.ScreenUpdating = False
DL = Range("A65500").End(xlUp).Row
DL2 = Sheets("Feuil2").Range("A65500").End(xlUp).Row
Range("A2:L" & DL).SpecialCells(xlCellTypeVisible).Copy Destination:=Sheets("Feuil2").Range("A" & 1 + DL2)
End Sub