google sheets return multiple columns with vlookup

Solutions on MaxInterview for google sheets return multiple columns with vlookup by the best coders in the world

showing results for - "google sheets return multiple columns with vlookup"
Alessandra
14 Jul 2016
1# Basic syntax:
2=ARRAYFORMULA(VLOOKUP(search_key, search_range, {columns,#s,to,return}, is_search_range_sorted))
3
4# Example usage:
5=ARRAYFORMULA(VLOOKUP($A$14, $A$1:$G$9, {2,3,6,7}, FALSE))
6# This formula returns entries from columns 2, 3, 6, and 7 when the 
7# entry in cell A14 is found in the range from A1 to G7.