Bonjour à tous,
Alors voilà, j'essaie depuis hier d'imprimer une sélection sur 2 feuilles de mon tableur en vain... Je ne sais pas trop si c'est possible ou pas ?
Voici mon code :
Sub Full_Impr()
Range(Sheets("Tp_Lb").Range("B17: S36"), Sheets("Pn_mt").Range("A16:FinFull_Impr.")).Select
Application.SendKeys "^(p)"
ActiveSheet.Activate
With ActiveSheet.PageSetup
.LeftMargin = Application.InchesToPoints(0.45)
.RightMargin = Application.InchesToPoints(0.45)
.TopMargin = Application.InchesToPoints(0.45)
.BottomMargin = Application.InchesToPoints(0.45)
.Orientation = xlPortrait
.Zoom = False
.FitToPagesWide = 1
.FitToPagesTall = 1
End With
End Sub
Problème ligne 2... je ne sais pas trop comment adapter pour imprimer ça correctement.
Je vous remercie par avance,
BOnne journée,