Hi all,
Does anyone know how to find same value in different rows in two columns?
Here if the value in "Ref1" column in first row matches the value in "Ref2" column in second row, I will add "match" to the "Comments" column for both two rows.
The same value cannot appear in the same row.
Original:
| Ref1 | Ref2 | Comments |
| 1234 | 5678 | |
| 0123 | 1234 | |
| ABC | EFGH | |
| XYZW | ABCDEF | |
| EFGH | ABCD | |
Desire result:
| Ref1 | Ref2 | Comments |
| 1234 | 5678 | match |
| 0123 | 1234 | match |
| ABC | EFGH | match |
| XYZW | ABCDEF | |
| EFGH | ABCD | match |