2 Frames and I want the 2nd Frame to "overwrite"/update the 1st Frame. Basically, where Table1-colB-value = Table2-oldB-value, overwrite Table1-colB-value with Table2-newB-value.
Table1
| colA | colB |
|---|---|
| 1 | X |
| 2 | Y |
| 3 | Z |
| 4 | W |
| 5 | X |
| 6 | X |
| 7 | W |
Table2
| oldB | newB |
|---|---|
| X | L |
| Y | M |
| Z | N |
| W | O |
Admired result after overwriting:
| colA | colB |
|---|---|
| 1 | L |
| 2 | M |
| 3 | N |
| 4 | O |
| 5 | L |
| 6 | L |
| 7 | O |
Is something like that possible? I did something similar using replace, but comparing 2 frames would be way better, e.g. in case the new-value-input-frame changes you wouldn't have to adjust the replace-code at every respective point.