Hi,
After extensively using FInd & Replace tool as my go to option for Vlookup function, I have realised lately that it doesn't work well with similar values.
For eg :
Input 1 -
| Field 1 | Field 2 | Field 3 |
| 12 | data | yes |
| 13 | dataaa | yes |
| 12 | dataa | no |
Input 2 -
| Field 1 | Field 2 | Field 3 |
| 12 | data1 | yes |
| 12 | data 2 | no |
My Output (Using FIND&REPLACE with Field 1 from both tables as common parameter)
| Field 1 | Field 2 | Field 3 | Field 4 |
| 12 | data | yes | no |
| 13 | dataaa | yes | [null] |
| 12 | dataa | no | no |
The Output that I desire :
| Field 1 | Field 2 | Field 3 | Field 4 |
| 12 | data | yes | yes |
| 13 | dataaa | yes | [null] |
| 12 | dataa | no | no |