lookup tables

  • Thread starter Thread starter joeldsmt
  • Start date Start date
J

joeldsmt

can i have two look up tables. one that has old prices and part number
and one that has price revisions and additional parts?

If so, how do i do this so that on my main page i enter a part numbe
and the newest data is entered?


thank you so much in advance.

J
 
Do one vlookup against the revision table. If it returns an error, then do
another vlookup against the older table.

=if(iserror(vlookup(revisiontablestuff)),
vlookup(oldtablestuff),vlookup(revisiontablestuff))
 

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