lookup in a range then vlookup from the found value onwards

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to lookup a value in a column, and then from that value onwards
lookup a text. A sort of then function should be included between functions
but I can't manage! please help asap!!

Thanks
 
Your question is not clear. VLOOKUP allows you to find a value in a table
that is in column 1, and returns a value from another column in that same
row.
Sounds to me that this is what you need...read help on vlookup

if what you want is to use the found value to get data from another table,
then simply use the first result within a second vlookup

example

= VLOOKUP( _
what1, _
where1, _
column1, _
false)

= VLOOKUP( _
VLOOKUP(what1, where1,column1,false), _
where2, _
column2, _
false)


where1 and where2 are the table names.

HTH
Patrick Molloy
Microsoft Excel MVP
 

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

Back
Top