I have a file, let's call it file A, which has the following 5 fields:
| ID | Name | City | Funded? | Cost ($) |
| 1 | Car theft prevention | Kansas | Yes | 100000 |
| 2 | Weapon Upgrades | Toronto | Yes | 50000 |
| ... | | | | |
| 50 | Fortifications | Charlottetown | No | 250000 |
Let's say I have another file, File B, with the same 5 fields, but with over 5000 sets of data already in it. All of the ID's in file A are already in file B. I just need to make updates to the fields Funded? and Cost ($).
I've tried using a very simple approach using find and replace:

However, this only appends them to file B (creates a whole new column). I want to replace/add the data from file A into the file B fields that already exist. Also, I do not know how to then overwrite file B after having used find and replace.