Table lookup

  • Thread starter Thread starter Richard
  • Start date Start date
R

Richard

Hi Everyone,

I am trying to do a simply lookup table, but its been years since i have
done it and can't remember.
i want the excel to give me a dropdown of tariffs and it fills in the
customer price adn company GP? it sounds simple but i can not get it working.

Thanks in advance
 
have a table with tariffs price and GP

Do a Data - Validation using the tariffs as your drop-down

in your cell to the right =VLOOKUP(Tariff cell,Table range,2,0)

and the same further right except =VLOOKUP(Tariff cell,Table range,3,0)

Can make it nicer if you include an IF

=IF(ISNA(VLOOKUP(Tariff cell,Table range,2,0)),"",VLOOKUP(Tariff cell,Table
range,2,0))

to show a null vlaue if the VLOOKUP is blank.
 
If you are looking to create a drop down list to choose from select the cell
or cells where the validation needs to take place. Go to Data - Vaidation -
Settings. Change Allow to List and then select the list you wannt to use
 

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


Back
Top