Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have a spreadsheet of questions - about 250 in total. The user is supposed
to select their answer from a drop down box. There are eleven possible answers to the various questions AND the drop down boxes have different combinations of of the eleven answers. For instance, in some cases we have only yes or no drop down answers and others have an answer of monthly, quarterly, NA, etc. What I am looking to do is create a formula in a separate cell that looks to the answer selected from the drop down box and reduce it to a letter, with each answer having a separate letter. Given the number of questions I would like to have the same formula for all questions; meaning nesting eleven IF/Then 's in a formula. Any suggestions? Thank you for your problem solving efforts in advance. K |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() This site should help getting around nesting more than 7 If statements. http://www.j-walk.com/ss/excel/usertips/tip080.htm If you post an example I'm sure you will get more help on the formula VBA Noob -- VBA Noob ------------------------------------------------------------------------ VBA Noob's Profile: http://www.excelforum.com/member.php...o&userid=33833 View this thread: http://www.excelforum.com/showthread...hreadid=566126 |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
K --
Don't completely understand. If you're trying to limit respondents answers to a preselected range, you can do that through DataValidation. You can set up a few lists of the various combinations of answers you'll allow (Yes/No/Maybe, or Male/Female/Other) and then select those ranges as lists of allowable answers depending on the question. If you're looking for Excel to translate an answer into text, then you can either nest a bunch of If statements: = IF(A1="A","Albondigas",IF(A1="B","Bologna","") etc. or use a numerical option, allowing the 'CHOOSE' function: A 1 # 2 =CHOOSE(A1,"Albondigas","Bologna","Crabgrass","") etc. HTH "K" wrote: I have a spreadsheet of questions - about 250 in total. The user is supposed to select their answer from a drop down box. There are eleven possible answers to the various questions AND the drop down boxes have different combinations of of the eleven answers. For instance, in some cases we have only yes or no drop down answers and others have an answer of monthly, quarterly, NA, etc. What I am looking to do is create a formula in a separate cell that looks to the answer selected from the drop down box and reduce it to a letter, with each answer having a separate letter. Given the number of questions I would like to have the same formula for all questions; meaning nesting eleven IF/Then 's in a formula. Any suggestions? Thank you for your problem solving efforts in advance. K |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Have a table of actual answers and codified answer, then do a VLOOKUP of the
actual answer to return the codified. -- HTH Bob Phillips (replace xxxx in the email address with gmail if mailing direct) "K" wrote in message ... I have a spreadsheet of questions - about 250 in total. The user is supposed to select their answer from a drop down box. There are eleven possible answers to the various questions AND the drop down boxes have different combinations of of the eleven answers. For instance, in some cases we have only yes or no drop down answers and others have an answer of monthly, quarterly, NA, etc. What I am looking to do is create a formula in a separate cell that looks to the answer selected from the drop down box and reduce it to a letter, with each answer having a separate letter. Given the number of questions I would like to have the same formula for all questions; meaning nesting eleven IF/Then 's in a formula. Any suggestions? Thank you for your problem solving efforts in advance. K |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel considers my formulas as plain text | Excel Worksheet Functions | |||
show text after formulas | Excel Discussion (Misc queries) | |||
How do I convert cells containing formulas to text (value returned | Excel Worksheet Functions | |||
How do you average text formulas?? | Excel Discussion (Misc queries) | |||
Read Text File into Excel Using VBA | Excel Discussion (Misc queries) |