Hi Folks,
I need to be able to Select a number of different cells and copy them.
They are non sequential.
BUT
I need to select them relative to another cell.
I'm using a case statement to say if b3 = 1 then copy cells G, I & K on
that same row. I can't be specific with the row number as I need to repeat
this process on multiple lines.
Any ideas??
Cheers
Joel - 23 Jan 2008 13:23 GMT
You can do something like this
MyRow = Range("B3").Row
cells(MyRow,"G").copy
cells(MyRow,"I").copy
cells(MyRow,"K").copy
> Hi Folks,
>
[quoted text clipped - 10 lines]
>
> Cheers
John - 23 Jan 2008 14:01 GMT
Yes used something very similar.
Works spot on.
Cheers
> You can do something like this
>
[quoted text clipped - 17 lines]
> >
> > Cheers