I am trying to reference a column in another workbook. I have two separate workbooks, MasterList and InStock, the MasterList never changes, but the InStock workbook can change depending on what I have in stock at the time. I want workbook (InStock) to fill in the serial number of its matching part number if it is found in the MasterList workbook. Is there a formula that can do this? Or a Macro that can do this? Thank you for your help
Workbook 1 (MasterList.xlsx)
<tbody>
</tbody>
Workbook 2 (InStock.xlsx)
<tbody>
</tbody>
Workbook 1 (MasterList.xlsx)
| A | B | C |
1 | Part Number | Serial Number | Description |
2 | 50376 | AE456 | Desktop |
3 | 50421 | AE342 | Desktop |
4 | 50779 | 12GX5 | Laptop |
5 | 50799 | 13GD9 | Laptop |
6 | 50814 | G145FDX | Tablet |
7 | 50836 | G129WQE | Tablet |
8 | 63147 | A0983456 | Cellphone |
9 | 64318 | A0123879 | Cellphone |
10 | 64347 | 98UYT654 | Scanner |
<tbody>
</tbody>
Workbook 2 (InStock.xlsx)
| A | B | C |
1 | Part Number | Serial Number | Description |
2 | 50376 | | Desktop |
4 | 50779 | | Laptop |
7 | 50836 | | Tablet |
9 | 64318 | | Cellphone |
10 | 64347 | | Scanner |
<tbody>
</tbody>