Hi
I have two tables
Table 1's first two columns:
| ID | Name |
| A1 | Old Alpha |
| A2 | Bravo |
| | Charlie |
| | Old Delta |
Table 2's first two columns:
| ID | Name |
| A2 | Bravo |
| A1 | New Alpha |
| | New Delta |
| | Charlie |
I would like to update the "Name" column of Table 1 with the "Name" column of Table 2 by looking up the ID.
New Table 1 that I am looking for:
| ID | Name |
| A1 | New Alpha |
| A2 | Bravo |
| | Charlie |
| | New Delta |
Normally I would think that a simple Join tool would be enough to do this type of Vlookup. However, the empty IDs are throwing me off. I'm not sure how to make my workflow more flexible so that it can also take into consideration the empty IDs.
Appreciate any help with this!