3xceln4ute
XLDnaute Occasionnel
Bonjour,
En lançant ma macro j'obtiens un code erreur 1004:
Impossible de Définir la propriété PaperSize de la classe PageSetup
Est-ce que vous avez une idée sur comment on pourrait régler le problème ?
Merci
https://ibb.co/giPQ6m
https://ibb.co/ckzsmm
En lançant ma macro j'obtiens un code erreur 1004:
Impossible de Définir la propriété PaperSize de la classe PageSetup
Est-ce que vous avez une idée sur comment on pourrait régler le problème ?
Merci
https://ibb.co/giPQ6m
https://ibb.co/ckzsmm
Code:
'Mise en page de la feuille Analyse pour impression
Sheets("Analyse").Select
Columns("B:B").ColumnWidth = 9
Columns("D:D").ColumnWidth = 6.29
With ActiveSheet.PageSetup
.PrintTitleRows = "$1:$1"
.PrintTitleColumns = ""
End With
ActiveSheet.PageSetup.PrintArea = ""
With ActiveSheet.PageSetup
.LeftHeader = ""
.CenterHeader = ""
.RightHeader = ""
.LeftFooter = ""
.CenterFooter = ""
.RightFooter = ""
.LeftMargin = Application.InchesToPoints(0.36)
.RightMargin = Application.InchesToPoints(0.37)
.TopMargin = Application.InchesToPoints(0.53)
.BottomMargin = Application.InchesToPoints(0.51)
.HeaderMargin = Application.InchesToPoints(0.5)
.FooterMargin = Application.InchesToPoints(0.5)
.PrintHeadings = False
.PrintGridlines = False
.PrintComments = xlPrintNoComments
.CenterHorizontally = False
.CenterVertically = False
.Orientation = xlLandscape
.Draft = False
.PaperSize = xlPaperLegal
.FirstPageNumber = xlAutomatic
.Order = xlDownThenOver
.BlackAndWhite = False
.Zoom = 80
.PrintErrors = xlPrintErrorsDisplayed
End With