I want to copy range from B2 to the last filled in Cell in the column. However there are breaks in the column that causes the xlDown function to stop prematurely, therefore I want to copy column A from A2 to the last filled in cell instead, since column A doesn't have any breaks in it.
Is it possible to somehow do this, and then offset the selected Range by One column, giving me the data I am after?
I am thinking something like this:
Worksheets("Sheet1").Range("A2").End (xlDown)
But how do I cause an offset so I end up with Range B2:xlDown (but the xlDown is the position of the previous selection of column A)?
Thanks,