Convert word (from single-select drop-down) to number
Hi all. I've set up a sheet to capture information regarding a potential project. One of the columns is titled "Edition" and the drop-down options are "Professional", "Professional +" and "Enterprise". I've inserted a column to the right that I'd like to use to calculate the following:
Professional = 8
Professional + = 12
Enterprise = 16
What formula can I use in that column to spit out the number?
Thank you!
Best Answers
-
Hi, @anne0225 ,
Try this and see if it does what you need it to do.
=IF([test my work]@row >= 16, "Enterprise", IF([test my work]@row >= 12, "Professional +", IF([test my work]@row >= 8, "Professional", "")))
This should give you the result where value<8 will result in a blank, 8-11 will be Professional, 12-15 will be Professional +, and 16 and up will be Enterprise.
Cheers!
Malaina
-
Thanks Malaina, that did it!
Answers
-
Hi, @anne0225 ,
Try this and see if it does what you need it to do.
=IF([test my work]@row >= 16, "Enterprise", IF([test my work]@row >= 12, "Professional +", IF([test my work]@row >= 8, "Professional", "")))
This should give you the result where value<8 will result in a blank, 8-11 will be Professional, 12-15 will be Professional +, and 16 and up will be Enterprise.
Cheers!
Malaina
-
Thanks Malaina, that did it!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65K Get Help
- 442 Global Discussions
- 140 Industry Talk
- 472 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 149 Just for fun
- 70 Community Job Board
- 497 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!