Been trying to find out how to return to the calling sub from a called sub and continue from the point right after the call statement.
_____________________________________
Public Sub Sub1()
code 1...
Call Sub2
code 2 ....
End Sub
_____________________________________
Public Sub Sub2()
Code....
What is procedure to return to Sub1 to code 2...
End Sub
_____________________________________
Public Sub Sub1()
code 1...
Call Sub2
code 2 ....
End Sub
_____________________________________
Public Sub Sub2()
Code....
What is procedure to return to Sub1 to code 2...
End Sub