Lookup or Match

D

Doug

I have a sheet with inventory, col (A) material Col (B)
description and Col (C) Part Number.
I also have a sheet that does a Bill Of Materials.
It gives material and description. I need to lookup the
material and match it to the description and retun the
part number. I am stumped.
 
D

Don Guillett

Have you tried looking in HELP index for vlookup and hlookup and match?
vlookup(a1,lookuptable,2,0)
will lookup whatever is in cell a1 in column 2 of the table you created. the
0 is the same a false in the examples in help.
match will find the row in a colum of the sought item
=match(a1,b2:b200) to find the row
then use
index (look in HELP) to combine with match.
This is how we learn.
 
D

Doug

thanx
-----Original Message-----
Have you tried looking in HELP index for vlookup and hlookup and match?
vlookup(a1,lookuptable,2,0)
will lookup whatever is in cell a1 in column 2 of the table you created. the
0 is the same a false in the examples in help.
match will find the row in a colum of the sought item
=match(a1,b2:b200) to find the row
then use
index (look in HELP) to combine with match.
This is how we learn.

--
Don Guillett
SalesAid Software
(e-mail address removed)



.
 

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