Would anyone know a way to pass a variable from a child sub back to its parent sub (i.e., from a sub that's been called in the main routine to that main routine? Something along the lines:
And then when I continue in Parent sub after executing Child sub it would already know that i = 1 since that's what we've determined in Child sub. So, my answer in Parent sub would be 2 in the provided example.
Would appreciate your help!