Delete the formula and start again. First make your Named Range as
suggested before. Then click in cell where you what the result to appear.
Type in your new formula as below.
=vlookup(value to lookup,Named Range,column number of what you are
retrieving, False)
1st arguement => value to lookup. This should be a cell reference of an
entered item.
2nd arguemnt => Named Range. As already described this will refer to your
range on the other worksheet.
3rd arguement=> column number of what you are retrieving. 1 is for the 1st
column within your Named Range, 2 is for the 2nd column within your Named
Range, etc. going across to the right.
4th arguement=>False. This means that you want an exact match to your
lookup value. If it cannot find one then you will get an error.
> This is what I have ???? I am totally lost.
>
[quoted text clipped - 20 lines]
>>> entered into cell A2 on the second worksheet and display the product and
>>> price in cells A3 and A4.
I am still not getting it to work
=VLOOKUP(B5,'Product List'!A1:E101,3,FALSE)
I want to type a product number in cell B5 and I want it to display the type
in cell C7, the model in cell C8, Shipping in cell C9 and the price in cell
C10.
This info is looked up on the Product List which is a different worksheet in
cells A1:E101
> Delete the formula and start again. First make your Named Range as
> suggested before. Then click in cell where you what the result to appear.
[quoted text clipped - 38 lines]
>>>> entered into cell A2 on the second worksheet and display the product
>>>> and price in cells A3 and A4.
adrian# - 08 Jun 2006 06:43 GMT
OK. Your formula looks good. What error are you getting?
You need to make sure the cell format (ie Text, Number, General, etc) is the
same in the cell B5 that you enter as the first column in your range on the
other worksheet (A1). Adrian.
>I am still not getting it to work
> =VLOOKUP(B5,'Product List'!A1:E101,3,FALSE)
[quoted text clipped - 48 lines]
>>>>> entered into cell A2 on the second worksheet and display the product
>>>>> and price in cells A3 and A4.
Roger Govier - 08 Jun 2006 08:12 GMT
Hi Fran
Presumably your product list has the following
A Product Number
B Type
C Model
D Shipping
E Price
If so, then in cell C7 of your sheet enter
=VLOOKUP($B$5,'Product List'!A1:E101,ROW(2:2),FALSE)
Copy down through cells C8:C10
Your first offset needs to be 2 to pick up Type from the table. By using
ROW(2:2) instead of 2, it will automatically increment to 3, 4 and 5 as
you copy down.
To protect against errors, it would be better to use
=IF(ISERROR(VLOOKUP($B$5,'Product List'!A1:E101,ROW(2:2),0)),"",
VLOOKUP($B$5,'Product List'!A1:E101,ROW(2:2),0))
(I have replaced the FALSE with 0 as it makes the formula slightly
shorter)

Signature
Regards
Roger Govier
>I am still not getting it to work
> =VLOOKUP(B5,'Product List'!A1:E101,3,FALSE)
[quoted text clipped - 49 lines]
>>>>> entered into cell A2 on the second worksheet and display the
>>>>> product and price in cells A3 and A4.