Multiple IF Formula
Hi,
I am looking for a formula to return a value 1-5 in a column based on a dropdown selection in another column. the options are
Strongly Agree, Agree, Neither Agree/Disagree, Disagree & Strongly Disagree.
I would like them to return a value (5,4,3,2,1)
I have tried to use a multiple IF Function and it is not working correctly.
=IF([Arrived on Time]@row = "Strongly Agree", 5), ([Arrived on Time]@row = "Disagree", 4))
Thanks!
Answers
-
You just need to stop closing off your arguments, more like this:
=IF([Arrived on Time]@row = "Strongly Agree", 5, IF([Arrived on Time]@row = "Disagree", 4, and so on
-
I think you're almost there!
Try adding an IF to the second function like this and removing the closing parenthesis after the 5:
=IF([Arrived on Time]@row = "Strongly Agree", 5, IF([Arrived on Time]@row = "Disagree", 4))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.6K Get Help
- 433 Global Discussions
- 136 Industry Talk
- 465 Announcements
- 4.9K Ideas & Feature Requests
- 143 Brandfolder
- 147 Just for fun
- 63 Community Job Board
- 466 Show & Tell
- 32 Member Spotlight
- 2 SmartStories
- 298 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!