S
simon
I have sub and from tis sub I call another sub.
If some condition is true then I would like to exit all subs not only the current one, which I can do with exit sub
How can you do that?
Private Sub UpdateAdv()
call UpdateFinal
.....
.....
end sub
Private Sub UpdateFinal()
....
IF condition=true then
exit all sub
end if
....
end sub
Thank you,
Simon
If some condition is true then I would like to exit all subs not only the current one, which I can do with exit sub
How can you do that?
Private Sub UpdateAdv()
call UpdateFinal
.....
.....
end sub
Private Sub UpdateFinal()
....
IF condition=true then
exit all sub
end if
....
end sub
Thank you,
Simon