extend vlookup

  • Thread starter Thread starter Noctos
  • Start date Start date
N

Noctos

I have a table 7 columns wide and i wish to extract the information from
6 columns using information given on the first column. a sought of
extended v lookup
 
Noctos,

You can use an array entered VLOOKUP to return multiple columns
If your original vlookup was something like
for the first value =VLOOKUP(A25,A1:G5,2,FALSE)
for the second value =VLOOKUP(A25,A1:G5,3,FALSE)
for the third =VLOOKUP(A25,A1:G5,4,FALSE)
etc....

You can select a range of 6 cells and put in:
=VLOOKUP(A25,A1:G5,{2,3,4,5,6,7},FALSE)
array enter (control + shift + enter)
if done properly {} braces will appear around the formula
and all 6 cells will recieve values.

{=VLOOKUP(A25,A1:G5,{2,3,4,5,6,7},FALSE)}

Dan E
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Vlookup Function 1
ADO with mixed data 2
Help needed 0
Copying a formula to a range 2
Excel 2003 VBA In directory Open Spreadsheets Extract data 1
Vlookup/address question 2
Lookup formula problemo 2
Too W i d e 6

Back
Top