vlookup in excel with multiple columns code example
Example 1: google sheets return multiple columns with vlookup
# Basic syntax:
=ARRAYFORMULA(VLOOKUP(search_key, search_range, {columns,#s,to,return}, is_search_range_sorted))
# Example usage:
=ARRAYFORMULA(VLOOKUP($A$14, $A$1:$G$9, {2,3,6,7}, FALSE))
# This formula returns entries from columns 2, 3, 6, and 7 when the
# entry in cell A14 is found in the range from A1 to G7.
Example 2: how to reform a column in excel into multiple rows
how to reform a column in excel into multiple rows