On Error check for Function within Function

S

stickandrock

I have a Function (Called "A") that has "On Error" logic coded for it. I
have another Function (Called "B") that is called from Function "A". If an
error occurs within Function "B" will the "On Error" condition be met on
Function "A" or does Function "B" need it's own "On Error" checking logic.

Thanks,
Don
 
D

Dirk Goldgar

stickandrock said:
I have a Function (Called "A") that has "On Error" logic coded for it. I
have another Function (Called "B") that is called from Function "A". If
an
error occurs within Function "B" will the "On Error" condition be met on
Function "A" or does Function "B" need it's own "On Error" checking logic.


The error-handler in A will be triggered.
 
Top