Hi, I'm quite new to Alteryx and have to do a report about a survey by using the software.
I'm not sure of how to summarize the data based on the answers.
Some Context:
For each question the answer goes from 0 to 10, if the value is between 0 and 6 is categorized as "BAD", if its 7 or 8 "REGULAR" and if its 9 or 10 "GOOD"
| Survey ID | Question 1 | Question 2 |
| 0001 | 6 | 10 |
| 0002 | 10 | 9 |
| 0003 | 2 | 7 |
| 0004 | 7 | 5 |
With the Formula option I created a new table with the correct label using "IF THEN ELSEIF ELSE END"
| Survey ID | Question 1 | Status | Question 2 | Status |
| 0001 | 6 | Bad | 10 | Good |
| 0002 | 10 | Good | 9 | Good |
| 0003 | 2 | Bad | 7 | Regular |
| 0004 | 7 | Regular | 5 | Bad |
Now I need to summarize the results for each question using percentages. Eg. For the Question 1, 50 % is "Bad", 25 % is "Good" and 25 % "Regular".
Which tool should I used? I tried summarize and failed... hopefully i explained myself. Thanks 🙂