A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
seems to print it at about 10% zoom level, even though I have this disabled.
The code is as follows:
ws.Worksheets(1).PageSetup.RightHeaderPicture.Filename = Range("K1").value
ws.Worksheets(1).PageSetup.RightFooter = "Page &P of &N"
ws.Worksheets(1).PageSetup.LeftFooter = " " 'Document
ws.Worksheets(1).PageSetup.CenterFooter = "DOCUMENT NOT CONTROLLED IF PRINTED"
With ws.Worksheets(1).PageSetup
.RightHeader = "&G"
.Zoom = 10
End With
ws.Worksheets(1).PageSetup.LeftHeader = " " 'Document
With ws.Worksheets(1).PageSetup.RightHeaderPicture
.Height = 54
.Width = 103.5
End With
You have Zoom = 10. See bold print above.