Google-sheets – Look for value then print corresponding cell

google sheetsgoogle-sheets-query

This is my test sheet:
https://docs.google.com/spreadsheets/d/11oiKLq6EWk9grdrtIKHT0NQ4naTX_tSPl7o8zAQP3Tc/edit?usp=sharing

My core information is in the sheet labeled "Information." In the sheet labeled "Query" I would like to have a formula look at the value in Query!A1 and compare it to Information!A1:A25.

Since Query!A1 matches Information!A2, then Query!B1 and Query!C1 should contain the corresponding information from Information!B2 and Information!C2.

Best Answer

The formula you need uses the VLOOKUP function:

=IFERROR(ArrayFormula(VLOOKUP(A1:A,Information!A1:C,{2,3},0)),)

Functions used:

Please check the answer in your sheet