I want to create a loop which prints the selected range on workbook. I have a relative range selected which is stored as "Arge".
I want to set the print area as the range selected.
Range("A1").Select
ActiveCell.Offset(1, 0).Range("A1:P37").Select
Dim Arge As Range
Set Arge = Selection 'PROBLEM
'do loop and other code
With ActiveSheet.PageSetup
.PrintTitleRows = ""
.PrintTitleColumns = ""
End With
ActiveSheet.PageSetup.PrintArea = Arge 'PROBLEM with Arge