SharonFinLV
Technical User
I have two tables:
I want these results:
As you can see:
- OldID can be same or different than NewID.
- Member can match OldID or NewID, if different, or neither.
If I'm going at this with the wrong approach... please, any ideas will be welcome.
Thanks!
SharonFinLV
Code:
[b]PAYEES[/b]
[i]OldID NewID PayeeName[/i]
[b]10001 10001[/b] Alan
[b]20002[/b] 20001 Bob
30003 [b]30001[/b] Carl
40004 40004 Doug
[b]MEMBERS[/b]
[i]MembID MembAcct[/i]
[b]10001[/b] Xxx
[b]20002[/b] Yyy
[b]30001[/b] Zzz
40001 Vvv
Code:
[i]OldID NewID PayeeName MembID MembAcct[/i]
10001 10001 Alan 10001 Xxx
20002 20001 Bob 20002 Yyy
30003 30001 Carl 30001 Zzz
- OldID can be same or different than NewID.
- Member can match OldID or NewID, if different, or neither.
If I'm going at this with the wrong approach... please, any ideas will be welcome.
Thanks!
SharonFinLV