Reputation: 36664
Why do I get this error for the following formula?
=ARRAYFORMULA(VLOOKUP(Q8:Q1000&" "&"You",{A8:A1000&" "&B8:B1000,C8:C1000},3,false))
I have tried this as well
=ARRAYFORMULA(VLOOKUP(Q8:Q&" "&"You",{A8:A&" "&B8:B,C8:C},3,false))
Upvotes: 1
Views: 3089
Reputation: 1
{A8:A1000&" "&B8:B1000, C8:C1000}
is wide only two columns, therefore use:
=ARRAYFORMULA(IFNA(VLOOKUP(Q8:Q&" "&"You", {A8:A&" "&B8:B, C8:C}, 2, 0)))
Upvotes: 1