VBA – Print Worksheets on One Page

The solution for “VBA – Print Worksheets on One Page” can be found here. The following code will assist you in solving the problem.

‘Print Sheet1 exactly one page wide and tall
With Worksheets(“Sheet1”).PageSetup
.Zoom = False
.FitToPagesTall = 1
.FitToPagesWide = 1
End With

Thank you for using DeclareCode; We hope you were able to resolve the issue.

More questions on [categories-list]

Similar Posts