I have two tables; Table 1 contains ID codes, Table 2 contains a list of transactions with multiple ID code columns (i.e. ID code 1, ID Code 2, ID Code 3).
I have filtered Table 1 to output a selected group of ID codes, and I want to join the two tables by the Table 1 ID code to the Table 2 ID Code 1, or the Table 1 ID code to the Table 2 ID Code 2, or...
I have come up with only two solutions, and neither is very efficient. The first is to cascade join tools one after another. The second to write a formula to flag each transaction containing the selected ID codes in any of the ID code columns (this is especially inefficient given the number of selected ID codes is approximately 100).
Any thoughts on a different solution?
EY