Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am trying to create text and when selected from a drop down list a specific
$ amount is input in the adjacent cell dependent on which item was selected from the drop down. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
If there are only a "few" different items you can use something like this:
=IF(A1="apples",25,IF(A1="grapes",35,IF(A1="pears" ,28,""))) If you have many different items then you should create a 2 column lookup table like this: ...........D..........E 1...apples.......25 2...grapes......35 3...pears........28 Then the formula would be: =VLOOKUP(A1,D1:E3,2,0) -- Biff Microsoft Excel MVP "Barbara S" <Barbara wrote in message ... I am trying to create text and when selected from a drop down list a specific $ amount is input in the adjacent cell dependent on which item was selected from the drop down. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to make text in a cell equal a number | Excel Discussion (Misc queries) | |||
Formulas Equal? | Excel Discussion (Misc queries) | |||
Formulas - SUMIF but with a text not number result? | Excel Discussion (Misc queries) | |||
Why do all my calculations/formulas equal zero? | Excel Discussion (Misc queries) | |||
How do I get text to equal a number so I can sum a column? | Excel Discussion (Misc queries) |