I want to make sure data stays on one page. Some times the FitToPageTall and Wide makes the page about 50% when 70% will get everything on page. I am not where I can check this on printer--can you use .zoom = 70 with the FittoPage lines?<pre>Sub PrintActiveSheet()
With ActiveSheet.PageSetup
.FitToPagesTall = 1
.FitToPagesWide = 1
.zoom = 70
.LeftFooter = ActiveSheet.Name
.RightFooter = Format(Now, "ddd d mmm yyyy")
End With
ActiveSheet.PrintOut
ActiveSheet.DisplayPageBreaks = False
End Sub</pre>
This message was edited by ya on 2002-10-18 10:55
With ActiveSheet.PageSetup
.FitToPagesTall = 1
.FitToPagesWide = 1
.zoom = 70
.LeftFooter = ActiveSheet.Name
.RightFooter = Format(Now, "ddd d mmm yyyy")
End With
ActiveSheet.PrintOut
ActiveSheet.DisplayPageBreaks = False
End Sub</pre>
This message was edited by ya on 2002-10-18 10:55