John has attended:
Excel VBA Intro Intermediate course
Error checking
What are the three ways of error checking?
RE: Error checking
Hi John
The three ways of error cheching are:
On Error Resume Next - Go to the next line of code
ON Error Exit Sub - Exit the routine where this line is
On Error Go To EH - Go to an error routine at the end of the routine where the error checking is taking place
Regards
Carlos