I have 2 tables
Table 1
Table 2
They are connected by pkg and Item. This results in the following
As you can see from the image "Item" has a mix of "BULK" & "PKG" values.
I want to create a new column that uses the cross reference to bring in new values.
The new table I want would look like this
**ITEM** **Value** **BULK** **PKG** **NEW COLUMN**
135 2 1
136 4 3
35 1 135 35 1
36 3 136 36 3
The top 2 items on the left are the associated "BULK" values. I want to bring in the PKG value that appears.


