I have two tables where they are connected by Table1[ColA] &Table1[ColB].
Now I am trying to match the values from Table1[ColB] with Table2[ColB] & return the result in Table2[ColC]. Where the result should be -
if it matches "Found"
doesn't match "Not-Found"
else Empty
Table1
ColA ColB ColC
11 AA
12 BB
13
Table2
ColA ColB
11 DD
12 CC
13 BB
Expected Output Table1
ColA ColB ColC
11 AA Not-Found
12 BB Found
13 CC Empty
Do anyone knows any solution to this problem!!