Skip the loop when error

rplim2016

Board Regular
Joined
Jun 28, 2016
Messages
76
Hi Mr. Excel users,

I have a simple problem that needs to be corrected. Here is my code:

~~~~~~~~~~~~~~
For Num = 1 To TotalDuplicatePerCase

Rows (1) .Find (What: = "New Value"). Select



ActiveCell.Offset (Num, 0) .Select

On Error GoTo abc:

ActiveCell.Find (What: = "Pending", After: = ActiveCell, LookIn: = xlFormulas, _
LookAt: = xlPart, SearchOrder: = xlByRows, SearchDirection: = xlNext, _ MatchCase
: = False, SearchFormat: = False) .Activate
On Error GoTo 0

X = ActiveCell.Offset (0, -3) .Value




Next Num


abc:
Resume Next

End Sub
~~~~~~~~~~~~~~~~~


What I wanted to happen, is when the LOOP starts at the beginning, so the macro does not go to run X = ActiveCell.Offset (0, -3) .Value code.

Appreciate your help.:)
 
Last edited by a moderator:

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
try
Code:
For Num = 1 To TotalDuplicatePerCase
    Rows(1).Find(What:="New Value").Select
     
    ActiveCell.Offset(Num, 0).Select
    
    On Error GoTo nextNum:
        ActiveCell.Find(What:="Pending", After:=ActiveCell, LookIn:=xlFormulas, _
            LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
            MatchCase:=False, SearchFormat:=False).Activate
    On Error GoTo 0
    
    X = ActiveCell.Offset(0, -3).Value

nextNum:
Next Num
 
Upvote 0

Forum statistics

Threads
1,215,327
Messages
6,124,292
Members
449,149
Latest member
mwdbActuary

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top