dottie: I tried various scenarios but nothing worked.
Have a look at my screenshot here to see how I've done this:
These are my actions on the job of customer dropdown and I'll explain each action below. You'll need to do the customization on your own but this should help you get there.
- For this action I simply get the job of customer text from the drop down and put it into an Action Result called jobOfCustomer so it's handy.
- I start a loop through the Customer table where FullName = jobOfCustomer (from above).
- Steps 3-6 get's the value from row (since we're in a loop) for each part of the BillAddressAddr and puts them into a different action result so I can use them later.
- End your loop.
- My last action is just a show message window to print out all the address lines I gathered to make sure everything looks correct. You'll probably want to do something similar while testing before creating the actions that'll enter value into field on screen.
In my previous post I mistakely asked you to compare ParentFullName but that's incorrect, you want to compare job of customer (ParentFullName) to the FullName from the customer table to get the correct BillAddressAddr fields.
~C