Hi what i'm trying to do is is increase the row height of some rows only while i'm printing the the page... I'm trying to expand the rows to fit onto the page vertially pretty much.. so the boxes are larger and easier to write in.. ( dont want it to effect what my page on the computer looks like though.. only during printing. I've split our page into 2 pages
How can i increase row height? I'd like to use below formula.. BUT it is getting stuck on Wks.Rows(Row).RowHeight = 1
Also how would i set the numbers in my array to be B2:A53 for top as i want to resize every row.
Thank you so much for any input/help
How can i increase row height? I'd like to use below formula.. BUT it is getting stuck on Wks.Rows(Row).RowHeight = 1
Also how would i set the numbers in my array to be B2:A53 for top as i want to resize every row.
Thank you so much for any input/help
Code:
Dim Wks As Worksheet
Set Wks = ActiveSheet
With Wks.PageSetup
.printarea = "B2:A53"
.FitToPagesTall = 1
.FitToPagesWide = 1
End With
For Each Row In Array(7, 9, 12, 14, 17, 19, 21, 24, 26, 28, 31, 33)
Wks.Rows(Row).RowHeight = 1
Next Row
Wks.PrintOut
With Wks.PageSetup
.printarea = "B55:AE90"
.FitToPagesTall = 1
.FitToPagesWide = 1
End With
For Each Row In Array(55, 90)
Wks.Rows(Row).RowHeight = 23
Next Row
Wks.PrintOut