E
Eric
If a table has merged rows it is not possible to select a
whole column using VBA.
To get around this I was thinking of creating multiple
ranges by:
1. testing to find the first row without merged cells and
making this the start of the range (m)
2. testing subsequent rows until a row with merged cells
is found (n), then make the previous row (n-1) the end of
the range.
3. repeat steps 1 and 2 to get multiple ranges until the
end of the table
Is this possible? Is there another way?
I think that can I do the testing but am not sure about
the multiple ranges. The changes to each of the ranges
will be the same for all. Should they then be worked one
after the other or can they be concatenated. If so, how?
whole column using VBA.
To get around this I was thinking of creating multiple
ranges by:
1. testing to find the first row without merged cells and
making this the start of the range (m)
2. testing subsequent rows until a row with merged cells
is found (n), then make the previous row (n-1) the end of
the range.
3. repeat steps 1 and 2 to get multiple ranges until the
end of the table
Is this possible? Is there another way?
I think that can I do the testing but am not sure about
the multiple ranges. The changes to each of the ranges
will be the same for all. Should they then be worked one
after the other or can they be concatenated. If so, how?