Convert a text to value number
Hi, I'm trying to convert the answers that I got from a survey to a value that I can calcul after.
Example : 13 people answer : 4 (agree) 5 (disagree) 2 (no aswer
I would like to convert "agree" to value of 5 points, "disagree" for 1 points, "no answer" for 0 points.
Please what should I do... Thank you :)
Answers
-
@Ly-Xu Ngo You can create fields in the sheet summary area and use a countif formula to calculate your results.
=Countif([Column Name]:[Column Name],"4 (agree)")*5
=Countif([Column Name]:[Column Name],"2 (no answer)")*1
etc...
Then if needed, you can pull this data into a report.
-
Hi there,
To convert the survey answers to values, you can follow these steps:
Create a new column next to the survey answers column, and name it "Converted Values".
In the first cell of the "Converted Values" column, use a formula to convert "agree" to 5 points, "disagree" to 1 point, and "no answer" to 0 points. For example, if the survey answers are in column A, you can use the following formula in cell B2: =IF(A2="agree", 5,IF(A2="disagree", 1,0))
This formula checks the value in cell A2 and assigns a corresponding value based on the condition.
Drag the formula down to apply it to all the cells in the "Converted Values" column.
Now, you will have the converted values corresponding to each survey answer. You can use these values for calculation purposes.
Let me know if you need further assistance.
Best regards,
Ryan Kramer
Have you backed up your solution lately? https://www.smartsheetbackups.com/
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 495 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!