Dropdown selection is this, then this (Formula)
Hello - thank you
Looking for help on If Dropdown selection is this, then this.
One column is Project Size hoping the next column could display hours allocated.
IE:
if you select SMALL = 30 minutes , MEDIUM = 60 minutes, LARGE = 120 MINUTES and XL = 240 minutes (and if nothing is selected you get 0 minutes
thank you in advance
Answers
-
Look into the IF function here - you can nest them.
Like this: =IF(Size@row = "Small", "30 Minutes",IF(Size@row = "Medium", "60 Minutes",IF(Size@row = "Large", "120 Minutes",IF(Size@row = "XL", "240 Minutes","0 Minutes"))))
-
Hello - Thank you Courtney
Formula worked with slight variation with the @row portion
=IF([Size]@row = “SMALL”, “30 Minutes”, IF([Size]@row = “Medium”, “60 Minutes”, IF([Size]@row = “Large”, “120 Minutes”, IF([Size]@row = “XL”, “240 Minutes”, “0"))))
Thank you
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!