This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sub PrintActiveSheet() | |
Dim ws As Worksheet: Set ws = ThisWorkbook.ActiveSheet | |
With ws.PageSetup | |
.Orientation = xlLandscape | |
.Zoom = False | |
.FitToPagesTall = 1 | |
.FitToPagesWide = 1 | |
.PrintArea = "B1:R41" | |
End With | |
End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This was super helpful, thanks.❤️
I changed
.PrintArea = "B1:R41"
to always set the current selection
.PrintArea = ActiveCell.CurrentRegion.Address
Ref: https://docs.microsoft.com/en-us/office/vba/api/excel.pagesetup.printarea#example