I am wondering if someone could provide some insight;
I am having trouble getting over the concept of ranges -
why I am having trouble with
and no trouble with
I thought I may have read somewhere where it has to do with cell qualification, but still don't get it. It drives me insane to use hardcoded values / values in between " " . I realize I could declare the Range(Cells(),Cells()) as a Range, but will have multiple declarations then. I am trying to find an alternative solution to still be able to use the top format.
I am having trouble getting over the concept of ranges -
why I am having trouble with
Code:
Range(Cells(4, 3), Cells(88, 12)).Copy
and no trouble with
Code:
Range ("C4:L88").Copy
I thought I may have read somewhere where it has to do with cell qualification, but still don't get it. It drives me insane to use hardcoded values / values in between " " . I realize I could declare the Range(Cells(),Cells()) as a Range, but will have multiple declarations then. I am trying to find an alternative solution to still be able to use the top format.