|
By:
You could use the cells freference. Eg in your example it translates as
Range(Cells(11, 4), Cells(209,7)).Copy use a variable in place of 209 to indicate the row: Range(Cells(11, 4), Cells(this_row,7)).Copy |
|
By:
Thank you, that looks like it will do the trick :)
|