Error handler in VBA Compiler

selestasvz

New member
Hello !
  1. Tell me if there is an error handler in VBA Compiler ?
    What functions does it support ?
  2. How can I skip the error event and continue working without displaying error messages?
 
The user guide contains what you want to know:

image

In your case, to avoid displaying an error, don’t enter anything after the Except keyword.

Try

The code we want to execute

Except
End
 
Last edited:
Back
Top