Having some issues understand what errorhandling does when you call/run sub or function from sub.
If no errorhandling in called sub, does the errorhandling from source sub apply?
If errorhandling in called sub has "exit sub" or "Exit Function" will the source sub continue to run?
asd asd
Sub Testing()
On Error GoTo ErrorHandling
Application.ScreenUpdating = False
Application.Calculation = xlCalculationManual
Application.EnableEvents = False
Call TestMinorSub
ExitHandling:
Application.ScreenUpdating = True
Application.Calculation = xlCalculationAutomatic
Application.EnableEvents = True
Exit Sub
ErrorHandling:
MsgBox Err.Description
Resume ExitHandling
End Sub