Look up table question

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

Guest

I am using this look up to insert a cost into column I from my value table.
how can i get a description inserted into Colunm P of my spreadsheet. I tried
changing costing to discription but it just gave me #name

=IF(I13<1,"",VLOOKUP(I13,Costing,2,FALSE)*J13)

thanks
 
What is the range (Columns/Rows) of your "Value Table" and is it named
Costing?
 
The columns are A) Material (which is what i am searching by) B) Cost C)
Description and they go all the way down to 1208. The value table is called
value, would i have to change this to cost ?


thanks
 
If you want to return data from column 3 of your table rather than
column 2 then you should change the 2 to a 3 in your formula.

Hope this helps.

Pete
 
=IF(I13<1,"",VLOOKUP(I13,$A:$C,3,FALSE)*J13)

Or if "Value" is columns A to C:

=IF(I13<1,"",VLOOKUP(I13,Value,3,FALSE)*J13)
 

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