C
crapit
How to make a sub routine exit totally when a it call another sub routine?
E.g if abc = 99 then filter sub routine will exit, but how do I make the
total() sub routine exit as well?
Sub Filter()
procedure...
if abc = 99
exit sub
end if
procedure...
procedure...
End Sub
Sub Total()
Filter()
Copy()
Page()
End Sub
E.g if abc = 99 then filter sub routine will exit, but how do I make the
total() sub routine exit as well?
Sub Filter()
procedure...
if abc = 99
exit sub
end if
procedure...
procedure...
End Sub
Sub Total()
Filter()
Copy()
Page()
End Sub