Sub pcor()
Set r1 = Range("A25:B50")
Set r2 = Range("A51:B75")
Set r3 = Range("A76:B100")
Set r1d = Range("D1")
Set r2d = Range("G1")
Set r3d = Range("J1")
r1.Copy r1d
r2.Copy r2d
r3.Copy r3d
End Sub

Signature
Gary''s Student
gsnu200711
> I have a number of entries in Col A & B
> The number varies, could be 100 and it could increase
[quoted text clipped - 5 lines]
> Then copy the last quarter to Col J & K
> Thanks for the help
pcor - 19 Mar 2007 16:33 GMT
That would only work if col a & B contained exactly 100 entries. As I said
before the number of entries in Col A & A will vary from 80 to 200 on a
regular basis
But thanks for the help. much appreciated
> Sub pcor()
> Set r1 = Range("A25:B50")
[quoted text clipped - 17 lines]
> > Then copy the last quarter to Col J & K
> > Thanks for the help