View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
T. Valko T. Valko is offline
external usenet poster
 
Posts: 15,768
Default How do I show a value for selected text from a dropdown list?

One way:

=IF(A1="","",1000+RIGHT(A1)*1000)

Biff

"matt" wrote in message
...
I want to be able to assign a value to each item in a dropdown list, and
have
that value appear in another cell when item is selected.
Example:
Items in dropdown list (Cell A1):
boiler 1
boiler 2
boiler 3

boiler 1 is $2,000, boiler 2 is $3,000 and boiler 3 is $4,000
Cell A2 would display $ value of A1
if boiler 2 is selected from list in A1, A2 would show the value $3,000

thanks for your help,
Matt