Selecting print range
ActiveSheet.PageSetup.PrintArea = ActiveCell.CurrentRegion.Address
There is some empty row in the print range. In this case this formula
is not fine for me.
or
ActiveSheet.PageSetup.PrintArea = "R3C1:R15C2"
In this case I cannot use variable.
What is the solution for that issue?
|