Sub Imprimer()
With [Tableau2].ListObject.Range
.Parent.PageSetup.PrintArea = .Address
.Parent.PageSetup.PrintTitleRows = .Rows(1).Address
.Parent.PageSetup.Zoom = False
.Parent.PageSetup.FitToPagesWide = 1
.Parent.PrintPreview 'aperçu pour tester
'.Parent.PrintOut 'pour imprimer
End With
End Sub