drop down lists

  • Thread starter Thread starter krob
  • Start date Start date
K

krob

I use excel to do quotes for my business. I want to put in the product code
and have the description and list price for my products autofill the other
cells. Can I do this and how?
 
Hi

=VLOOKUP(A1,C1:H100,2,FALSE)

Suppose you have a range C1:H100 with all you product info and the product
codes in the first column and you enter the product number into A1, via a
drop down list or by typing. (Use Data, Validation, List option to create a
list)

The formula above return the item in the second column (2) of the range
C1:H100 and from the row onwhich the product number was found in C1:C100.
FALSE means this is an exact match.
 
Please select the column header and go to Data in the menu bar>>Filter>>Auto
Fill this will give the drop down arrow on the header row of your table. Now
you can select the product code and the rest of the details will be reflected
by automatically. I hope this will sort your problem
 
Back
Top