Posts by Bizzotto • 21 points
1 post
-
1
votes3
answers2568
viewsA: Goto Error Handling Does Not Work in Loop
Whenever you use the instruction On Error GoTo to direct to a specific line remember to wipe the error memory using -1 and 0. The code would look like this: On Error GoTo -1 On Error GoTo 0 On Error…