How to search a column that is not the first of the table

G

Guest

Hi to everyone,
I have a document with a table with various columns, and i would need to
search a column which is not the first, to return the corresponding value of
the first column. It would be fine to use vlookup if the column I´m searching
were the first. Is there a function which allows me to choose the column to
search? Or does vlookup has the possibility to search in another column but
the 1st?

Thanks in advance for any help,
Antonio
 
G

Guest

Thanks a lot!
Now I have understood the combined use of INDEX-MATCH. Powerful and it works!
If I understand well:
INDEX(TAB;MATCH(REF;COL_N_OF_TAB;FALSE);1)
Search the reference REF in Nth column of table TAB and gives the value of
the cell in column 1 and row corresponding to the position of REF in column
N. Which is just what I needed.
And more:
INDEX(TAB;MATCH(REF;COL_1_TAB;FALSE);N)=VLOOKUP(REF;TAB;N;FALSE)
The problem is that in vlookup you can´t choose the column number to
search:it´s always 1.

Unfortunately, I had already moved the column to the first place (which
caused me a lot of trouble because of a lot of references in other
formulas...). : (

Cheers,
Antonio

"JLeoni" escreveu:
 

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

Top