S
Stuart
I build an array of the instances of '£' when found in
col(6). An offset down of a couple of rows will mark
the start of a data 'page', whilst an offset up from the
next value held in the array, will mark the end of that
data 'page'.
Once the array is built, this code establishes the data
'page' to be transferred:
Set rng1 = Range(varr(i).Offset(1, -5), varr(i + 1) _
.Offset(-6, -5)).Resize(, 6)
This seems to work until I reach the last 'page' when
suddenly there is no '£' in col(6) to mark the next
'page'......because there isn't a next page, and so
no '£' to Offset back up from!
What there is however, consistently throughout the data,
is a '£' in col(5) which more accurately marks the end
of the data 'page'.
So might there be a more efficient way that does
(perhaps) something like this:
search down col(6) for a '£' & mark it as a 'page' start
then switch to col(5) in that same row
search down col(5) for a '£' & mark it as a 'page' end
etc
Would be grateful to know if arrays are the answer, and
for any help, please.
Regards.
col(6). An offset down of a couple of rows will mark
the start of a data 'page', whilst an offset up from the
next value held in the array, will mark the end of that
data 'page'.
Once the array is built, this code establishes the data
'page' to be transferred:
Set rng1 = Range(varr(i).Offset(1, -5), varr(i + 1) _
.Offset(-6, -5)).Resize(, 6)
This seems to work until I reach the last 'page' when
suddenly there is no '£' in col(6) to mark the next
'page'......because there isn't a next page, and so
no '£' to Offset back up from!
What there is however, consistently throughout the data,
is a '£' in col(5) which more accurately marks the end
of the data 'page'.
So might there be a more efficient way that does
(perhaps) something like this:
search down col(6) for a '£' & mark it as a 'page' start
then switch to col(5) in that same row
search down col(5) for a '£' & mark it as a 'page' end
etc
Would be grateful to know if arrays are the answer, and
for any help, please.
Regards.