I have two data sources for the T shirts as below, the only common data source between these two tables are the Style number "TOP211".
However, you still can find the relatives by looking closely with the color information, so you can figure out which item number is related to the vendor item number.
Is it possible to join these two tables together as Table 3?
I guess by setting up the Style Number need to be 100% match, then Color needs match as closely as possible... Thank you.
Table 1
Style | Item Number | Color |
TOP211 | 33512 | True Black |
TOP211 | 33525 | Charcoal Mix |
TOP211 | 33514 | LT Grey Mix |
TOP211 | 33515 | Black Iris |
Table 2
Vendor STYLE | Vendor Item | Color |
TOP211 | 5512 | Black - TRUE - BLACK |
TOP211 | 5543 | Gray - Charcoal Mix |
TOP211 | 5578 | Gray - Grey - LIT MIX |
TOP211 | 5687 | NACY BLACK IRIS |
Table 3
Style | Item Number | Color | Vendor Item | Color |
TOP211 | 33512 | True Black | 5512 | Black - TRUE - BLACK |
TOP211 | 33525 | Charcoal Mix | 5543 | Gray - Charcoal Mix |
TOP211 | 33514 | LT Grey Mix | 5578 | Gray - Grey - LIT MIX |
TOP211 | 33515 | Black Iris | 5687 | NACY BLACK IRIS |