This statement tell VBA to reset the Err variable to 0 and whenever an error occurs just do the next statement.
Without this statement you have know way to handle errors. If a sub or function has no error handling and an error occurs the code jumps out of the routine to the last on Error statement. There is some danger to using this statement. In ASP which is a version of VBA to run webpages, this is the only error handling you can use. Example
|