Hi VBAers,
I have a range which is selected via a find function, not a cell reference.
The find looks for two unique strings then selects the range between.
From here I want the selected range to expand out 12 columns, say from Column A to Column M and keep that range selected.
I can't reference a cell range as the location of the selection strings vary day to day.
Here is what I have so far:
How do I get this range to include everything out to Column M please?
I have a range which is selected via a find function, not a cell reference.
The find looks for two unique strings then selects the range between.
From here I want the selected range to expand out 12 columns, say from Column A to Column M and keep that range selected.
I can't reference a cell range as the location of the selection strings vary day to day.
Here is what I have so far:
Code:
Range("A:A").Find(What:="Point 1").Offset(1, 0).Select
Range(Selection, Range("A:A").Find(What:="Point 2")).Select
How do I get this range to include everything out to Column M please?