If - Then Formula

K

kgeorge

Please Help!!

I have column A as a drop down list and would like it if column C would
give a corresponding price to what is picked in column A from the drop
down list.
Any quick fixes?

Thanks A Bunch!
 
C

Cutter

You make a table somewhere within your workbook (possibly expand on th
source list for your drop down?) with your data that comprises you
drop down list and in the adjacent column list the prices that ar
associated to each item in your list.
Then use a VLOOKUP() formula in column C of the sheet containing you
drop down. When an item is selected from your drop down the formul
will display the associated price from your table.

Something like:

=VLOOKUP(cell holding the drop down,sheet name & range of you
table,2,0
 
D

Duke Carey

Do you have a table of items & corresponding prices?

Let's say that range G1:G10 contains the labels for your drop down. In
H1:H10 put the prices

in C1 use:

=vlookup(A1,$G$1:$h$10,2,false)
 
Top