Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I need to allow my users to select a text string from a drop downlist box.
However each of the three possible text strings in the drop down box equates to a value that I need to use for calculations. How can I assign numerical values to the text selections? Could anyone tell me how to go about this? Thanks, Bill |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Use a VLOOKUP table, if A1 is the cell with the dropdown, in another sheet
you can have a table in A1:B3 built like string1 10 string2 20 string3 30 then use something like =IF(A1="","",VLOOKUP(A1,Sheet2!A1:B3,2,0)) -- Regards, Peo Sjoblom Portland, Oregon "Four Kings" <Four wrote in message ... I need to allow my users to select a text string from a drop downlist box. However each of the three possible text strings in the drop down box equates to a value that I need to use for calculations. How can I assign numerical values to the text selections? Could anyone tell me how to go about this? Thanks, Bill |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thank you, I'll give it a try!
"Peo Sjoblom" wrote: Use a VLOOKUP table, if A1 is the cell with the dropdown, in another sheet you can have a table in A1:B3 built like string1 10 string2 20 string3 30 then use something like =IF(A1="","",VLOOKUP(A1,Sheet2!A1:B3,2,0)) -- Regards, Peo Sjoblom Portland, Oregon "Four Kings" <Four wrote in message ... I need to allow my users to select a text string from a drop downlist box. However each of the three possible text strings in the drop down box equates to a value that I need to use for calculations. How can I assign numerical values to the text selections? Could anyone tell me how to go about this? Thanks, Bill |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
if you use a combobox from the forms toolbar your choice is automatically
assigned a value 1,2,or 3 in the linked cell paul remove nospam for email addy! "Four Kings" wrote: Thank you, I'll give it a try! "Peo Sjoblom" wrote: Use a VLOOKUP table, if A1 is the cell with the dropdown, in another sheet you can have a table in A1:B3 built like string1 10 string2 20 string3 30 then use something like =IF(A1="","",VLOOKUP(A1,Sheet2!A1:B3,2,0)) -- Regards, Peo Sjoblom Portland, Oregon "Four Kings" <Four wrote in message ... I need to allow my users to select a text string from a drop downlist box. However each of the three possible text strings in the drop down box equates to a value that I need to use for calculations. How can I assign numerical values to the text selections? Could anyone tell me how to go about this? Thanks, Bill |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I use IF in Excel to string the two text values (high,low) | Excel Worksheet Functions | |||
HOW TO CONVERT NUMERICAL VALUE IN TO ENGLISH TEXT | Excel Worksheet Functions | |||
data validation list drop down text format too small | Excel Worksheet Functions | |||
text and values combined in one cel | Excel Discussion (Misc queries) | |||
drop down text is very small | Excel Worksheet Functions |