Level:
3 
Professional point:
0 
Experience:
117 
Thread:
92 
Post:
421 
Joined date:
4/20/2007 1:04:00 AM
Last Visit:
4/21/2007 2:23:35 PM
|
I can't work with that method, so I'd approach it differently -- HTH.
Worksheets("Liabilities_Partner").Activate On Error GoTo 100 x = Application.Match("Investment (LocB)", Range("B1:B500"), 0) y = Application.Match("Regular", Cells(x, 2).Resize(100), 0) Cells((x + y) - 1, 2).Offset(, 1).Resize(, 51).Copy Exit Sub 100: MsgBox "Error!"
|