How do I make the numeric value returned in this formula usable in other mathematical formulas?
Value returns correctly, but I need to be able to add that value to OTHER formulas and fields.
=IF([Target Level:]@row = "Standard", "$19,000", IF([Target Level:]@row = "Superior", "$100,000", IF([Target Level:]@row = "Premier", "$240,000", IF([Target Level:]@row = "Elite", "$490,000", IF([Target Level:]@row = "Platinum", "$875,000", IF([Target Level:]@row = "Presidential", "$1,500,000"))))))
TIA!
Answers
-
1) By using "$240,000" in the formula Smartsheet sees it as text.. it sees it as no different than "Hot Chocolate". So you want to type 240000 and let the formatting of the column change it to $240,000
2) Try this:
=IF([Target Level:]@row = "Standard", 19000, IF([Target Level:]@row = "Superior", 100000, IF([Target Level:]@row = "Premier", 240000, IF([Target Level:]@row = "Elite", 490000, IF([Target Level:]@row = "Platinum", 875000, IF([Target Level:]@row = "Presidential", 1500000))))))
Brent C. Wilson, P.Eng, PMP, Prince2
Facilityy Professional Services Inc.
http://www.facilityy.com
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63K Get Help
- 380 Global Discussions
- 212 Industry Talk
- 442 Announcements
- 4.6K Ideas & Feature Requests
- 140 Brandfolder
- 129 Just for fun
- 130 Community Job Board
- 449 Show & Tell
- 30 Member Spotlight
- 1 SmartStories
- 305 Events
- 34 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!