Google-sheets – VLOOKUP needs to find value from a list and if its equivalent then

formulasgoogle sheetsgoogle-sheets-arrayformulavlookup

I have a problem where I'm currently using a VLOOKUP function on this sheet. LINK

What I wanted to happen is VLOOKUP would search on the List on G column and compare it to B column and if it matches. It will return a value y. The problem I encountered is it can't search from a list.

If anyone can help me. That would be great.

Best Answer

your VLOOKUP should look something like this:

=ARRAYFORMULA(IF(IFERROR(VLOOKUP(B2:B; List!G2:G; 1; 0); )<>""; "y"; ))