J
Joe 90
Code:
Worksheets("Sheet1").Select (or Activate)
[end code]
causes a breakout from Application.ScreenUpdating=false
So I am trying to reference the range I need using:
[code]
Worksheets("Sheet1").Range("J2", Range("J2").End(xlDown)). Copy
Worksheets("Sheet2").Range("b2")
[end code]
but I get an object error. I need to reference the range with .End because
the size of range starting at J2 will keep changing.
All/any help greatly appreciated & sorry for the double post (?)
Joe