Reputation: 4636
I have two tables:
I want to identify from which group each person in TABLE 2 is, in a way it looks like this:
Tried using lookup but didn't find my way there.
Upvotes: 1
Views: 63
Reputation: 5325
Try this:
={
"Solution";
ARRAYFORMULA(
IF(
D4:D = "";
"";
VLOOKUP(
"*" & TRIM(D4:D) & "*";
TRIM(A5:A);
1;
0
)
)
)
}
Upvotes: 2