SOLVED

Adding a column to an array reference

Brass Contributor

I have a table, say Things, with two columns.

 

I use a reference to this table elsewhere in the workbook, =Things, and the table spills into the cells there in two columns - an exact reference to the table.

 

I now want to add a column next to this spilled data that performs a lookup on the values in the second column of the spilled cells. 

 

Is there a way to implement this so that the calculated column is also an array formula, so it automatically expands downward next to the spill, as items are added to the original table?

 

(I don't want to add the column to the original table for a variety of reasons.)

 

Thanks! 

2 Replies
best response confirmed by boukasa (Brass Contributor)
Solution

@boukasa 

Either refer to the original column or use INDEX() to get the column data.

=VLOOKUP(Things[Column1],lookup_table,2,FALSE)

=VLOOKUP(INDEX(F2#,0,1),lookup_table,2,FALSE)
Thank you very much.
1 best response

Accepted Solutions
best response confirmed by boukasa (Brass Contributor)
Solution

@boukasa 

Either refer to the original column or use INDEX() to get the column data.

=VLOOKUP(Things[Column1],lookup_table,2,FALSE)

=VLOOKUP(INDEX(F2#,0,1),lookup_table,2,FALSE)

View solution in original post