Let's say that I have to two subs:
Sub subA()If (some condition)<some condition=""> is True Then</some>
Call subB
Else
' Some code
End If
End Sub
Sub subB()'Some code
End Sub
Is it somehow possible to disconnect subB from subA once called? So that once subA calls subB, subA is ended while...