Hello all,
My code is correctly doing the following:
My code is correctly doing the following:
- Run routine MatchFundName and loop until a match is found - the key info is that RowSD should be '13' throughout this loop - a different variable will increase by 1 during this loop
- When match is found, call routine MatchEntity. This routine also needs RowSD to be '13' throughout this loop. This subroutine loops until a different match is found and data should be updated.
- The cycle is complete.
- Now I want to start all over again with MatchFundName but now RowSD needs to be '14'.
- Both routines are public.
- Can I call MatchEntity from MatchFundName and back and forth as many times as I want?
- How do I get RowSD to change to 14, then 15, etc.
- I think I need a new variable somewhere, but am struggling with where it should go.
- How do I declare RowSD as 13 on a global level? Maybe that would work?