Excel VBA - Is it possible to call sub on error? -
I am searching, but I can not really find anything that answers this question.
I am getting an error and I know what is the reason and there is actually no problem if this error occurs, then run the second sub-section before running the next line code is required. So I'm wondering:
Is it possible to do something like this:
error call sheet 1 test on
thanks advance In!
no
The best you can do is to handle a different section of the code and then branch back to the row just below the line that raises the error. (If you know what that line is!)
Comments
Post a Comment