Hi,
I created a form to collect survey results, the responses are returned to Smartsheet #1 (image below). The survey has 18 questions with these dropdown (single select) responses:
- Good
- Satisfactory
- Does Not Meet Standards
- Not applicable
In Smartsheet #2, I want to search for responses for "Phoenix" and then convert the responses to these numerical values so I can create charts in a dashboard:
- Good = 3
- Satisfactory = 2
- Does Not Meet Standards = 1
- Not applicable = 0
I wrote this formula but it is returning an #UNPARSEABLE error, even with the Edit Column Properties set to Text/Number :
=INDEX({Feedback_Form Range 1}}, MATCH(COLLECT({Feedback_Form Range 2}, {Feedback_Form Range 1}, "Phoenix")), IF(OR({Feedback_Form Range 1} = Good, {Feedback_Form Range 1} = Satisfactory, {Feedback_Form Range 1} = Does Not Meet Standards, {Feedback_Form Range 1} = Not applicable), "3", "2", "1", "0"))
How would you write a formula to INDEX the site column and then return a numerical value for the response in that cell?
Thank you from a newbie :)