If I have the following tables:
ConsolidatedAccounts
ID
AccountNumber
IndividualAccounts
ID
AccountNumber
joiner_ConInd
conAccID
indAccID
conAccID has a relationship to ConsolidatedAccounts.ID
indAccID has a relationship to IndividualAccounts.ID
How should I build a form that lets you scroll through consolidated accounts and has a list of individual accounts with checkboxes and lets me place checks next to the individual accounts that are a part of the consolidated account?
Thanks!