



Vlookup B2 in Column A =VLOOKUP(B2, CHOOSE({3,1,4}, D1:D5, C1:C5, B1:B5, A1:A5), 3,0) [Formula] The formula returns the string “Jill”. (Refer Table 4) The formula does a Vlookup on B2, choosing Column B as first column, Column D as second column and Column A as third column. Returns matching value from col_index_num 3 (ie. column A), in the table_array. =CHOOSE({3,1,4}, D1:D5,C1:C5, B1:B5, A1:A5) [Formula Break] This part of the formula, chooses columns and rearranges their order in table_array: (B1:B5, D1:D5, A1:A5).
