Look up functions

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

Guest

Does Excel have the ability to look for a value in a range of cells, then, if it finds that value, return the value in the adjacent cell? For example, I want Excel to look for the word "bus" in column A, and if it finds "bus" in cell A30, then return the value in cell B30.
 
Hi!

It most certainly has.

Try Excel Help under HLOOKUP and VLOOKUP for starters.

Al
 
You want Vlookup, as in:

=vlookup("bus",A:B,2,false)

The third parameter specifies the column number in the lookup range. The
fourth parameter says "find an exact match". Use True to find the closest
match, but the column must be in sort order to do so.

--
Regards,
Fred
Please reply to newsgroup, not e-mail


Gabe said:
Does Excel have the ability to look for a value in a range of cells, then,
if it finds that value, return the value in the adjacent cell? For example,
I want Excel to look for the word "bus" in column A, and if it finds "bus"
in cell A30, then return the value in cell B30.
 

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

Help needed 0
sum if - null values 1
Name List Formula Help 6
Lookup...? 3
Help using the DAY() function 8
highest second highest and third highest 6
"IF" Function 1
Functions 1

Back
Top