Sub Impression()
Dim Derligne as Long
Derligne = ThisWorkbook.Sheets("Feuil1").Range("a65536").End(xlUp).Row
Application.Dialogs(xlDialogPrinterSetup).Show
With ThisWorkbook.Sheets("Feuil1")
.PageSetup.PrintArea = "a1:l" & Derligne
With ThisWorkbook.Sheets("Feuil1").PageSetup
.Orientation = xlLandscape
'.FitToPagesWide = 1
'.FitToPagesTall = 1
'.BlackAndWhite = True
End With
.PrintOut Copies:=1
.PageSetup.PrintArea = ""
End With
End Sub