Forum Discussion

Paul Rose's avatar
Paul Rose
Copper Contributor
Apr 22, 2018

Help with creating an Excel Function

I want to create an excel function where if I ask a question (from a drop down list of text responses) the response is as follows:

  • If "Yes" from the dropdown list then a number value of 20 is returned
  • If "No" from the dropdown list then a number value of 0 is returned
  • If "Unknown" from the dropdown list then a number value of 20 is returned
  • If "N/a" from the dropdown list then text is returned stating "Detail why N/a?"

I have done this:

=IF(C7="Yes",20,IF(C7="No",0,IF(C7="Unknown",20,IF(C7="N/a","Detail why N/a?","Not Scored"))))

but it doesnt seem to work.

 


 

 

 

Resources