Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am getting an error in the code below after the first loop though IF
there is an error in finding the value in the worksheet. The first loop though works correctly. Here is the error: Run-time error '91' Object variable or With block variable not set X = 0 Do Until X = pdatecnt2 Range("a1").Select ActiveCell.Offset(X, 0).Range("A1").Select accttodel = Selection.Value aSheet.Activate Range("a1").Select Range("A:A").Select On Error GoTo nextx 'The error occurs in the following line Selection.Find(What:=accttodel, After:=ActiveCell, LookIn:=xlValues, _ LookAt:=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, _ MatchCase:=False).Activate ActiveCell.Rows("1:1").EntireRow.Select Selection.Delete Shift:=xlUp nextx: Sheets("temp").Select X = X + 1 Loop Thank you for taking a look -Michael |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Set Error handling INSIDE error-trap | Excel Programming | |||
How to trap an error with onError in a for i loop | Excel Programming | |||
Cleaner Error trap in Loop. | Excel Discussion (Misc queries) | |||
Error Handling - On Error GoTo doesn't trap error successfully | Excel Programming |