How do I exit the For
ITERATION in loop if the condition is met and then go to the next one. The sheet has several thousand lines and such a break in the loop would speed up the code. This is not exit from whole loop only skip one iteration.
For i = 1 To LastRow2
For j = 1 To LastRow3
If ark2.Cells(j, "F") = ark3.Cells(i, "J") Then
GoTo NextIteration
Else
LastRow2 = ark2.Cells(Rows.Count, 1).End(xlUp).Row
ark2.Rows(LastRow2 + 1) = ark3.Rows(i)
End If
Next j
Next i