Hi all,
I've got 2 files that i'm trying to cross check.
File #1 contains a large amount of data, inclusive of rows of data (identified via a Unique ID) that are irrelevant for my purposes.
File #2 contains a list of all relevant unique ID's that i'd like to keep (alternatively i also have file #3 that has all irrelevant Unique IDs)
What i'm trying to do is cross check File #1 against File #2 and delete all rows in File #1 with Unique Id's not within File #2
e.g.
Before
File #1
Unique ID | Description | Amount |
123.XYZ | test | 2 |
223.ABC | test 1 | 10 |
345.123 | test 2 | 5 |
File #2
After
File #1
Unique ID | Description | Amont |
223.ABC | test 1 | 10 |
345.123 | test 2 | 5 |