I am trying to fill a cell from a row if a match is found in an other TAB.
In this example, I want to fill NAME Column if I find the ID in TAB2. So basically, formula would be: If I find ID in TAB2, then fill NAME from TAB2 in TAB1..
TAB1
------------------------------------
| ID | NAME |
------------------------------------
| 12245 | ERIC |
| 12246 | |
| 12247 | |
| 12248 | JANE |
TAB2
------------------------------------
| ID | NAME |
------------------------------------
| 12245 | ERIC |
| 12248 | JANE |
I hope I made myself clear...