T
tom
I'm currently using this structure to define my range:
Dim myRng As Range
With Worksheets("Education")
Set myRng = .Range("A4", "A74")
End With
However, the last cell in the range I need (A74 in this case), changes
depending on the size of my print area.
Is there a way to change the above so that the last cell in the range is 16
cells above the last row in my print area?
Many Thanks.
Tom Morris
Dim myRng As Range
With Worksheets("Education")
Set myRng = .Range("A4", "A74")
End With
However, the last cell in the range I need (A74 in this case), changes
depending on the size of my print area.
Is there a way to change the above so that the last cell in the range is 16
cells above the last row in my print area?
Many Thanks.
Tom Morris