I have one column (A) that will change from month to month, but will always define the maximum number of rows that my data set can be held in. I've therefore coded it as follows.
FinalRow = Range("A70000").End(xlUp).Row
Columns B-F will range in the number of rows that they have, but as mentioned will never go beyond column A in number of rows. What I would like to do is name all of these other colums as ranges too.
Can anyone explain how to do this?
FinalRow = Range("A70000").End(xlUp).Row
Columns B-F will range in the number of rows that they have, but as mentioned will never go beyond column A in number of rows. What I would like to do is name all of these other colums as ranges too.
Can anyone explain how to do this?