I have 2 Excel worksheets. In the first I have a table that has a column named "Sales Order" and "SO Item" of each row (product) plus some other columns. In this table I concatenate "Sales Order" and "SO Item" so that I have Sales Order parent (xxxxxxx00) and also Sales Order childs (xxxxxxx01, xxxxxxx02,...,xxxxxxx09). However, in the second worksheet I also have the "concatenation" column but only contains Sales Order parents. How can I pull the whole rows containing the childs of each parent from worksheet 1 to worksheet 2?
I've tried to do it using VLOOKUP but this only returns a single child value (xxxxxxx001) and also its not returning the whole row where this code is located
Table 1 is:
Sales Order | SO Item | Concatenation | Material Description | Feas Plan Date |
---|---|---|---|---|
2503319449 | 100 | 2503319449100 | SYS-7210 SAS-Mxp | Bundle Header |
2503319449 | 101 | 2503319449101 | PS-7210 SAS-T/Mxp | 1/31/2023 |
2503319449 | 102 | 2503319449102 | SYS-7210 SAS-Mxp2VDC | Global Allocation |
2503319449 | 200 | 2503319449200 | OS-7210 SAS-Mxp | 1/31/2023 |
Table 2 is:
Sales Order | SO Item | Concatenation | Material Description | Feas Plan Date |
---|---|---|---|---|
2503319449 | 100 | 2503319449100 | SYS-7210 SAS-Mxp | Bundle Header |
2503319449 | 200 | 2503319449200 | OS-7210 SAS-Mxp | 1/31/2023 |
I want Table 2 to extract the missing "Concatenation" items from Table 1.