Thread
:
On Error and Loops
View Single Post
#
1
Posted to microsoft.public.excel.programming
ThisShouldBeEasy
external usenet poster
Posts: 6
On Error and Loops
If I exit a loop do to an error (On Error) can I then direct control back
into the loop via a GoTo?
e.g.
On Error GoTo EndofProc
For i = 0 to n
Resume:
' do stuff
Next i
Exit Sub
EndofProc:
i = i + 1
GoTo Resume
Reply With Quote
ThisShouldBeEasy
View Public Profile
Find all posts by ThisShouldBeEasy