IF formula help resquested !
I'm trying to to create a formula that turns in a number the text in a row.
this formlu is working :
=IF(FREQUENCE@row = "Probable FREQUENT"; 5)
but when I try to add other text it just doesn't work.
I would like to create a formula that gives me these numbers in these conditions :
- Probable FREQUENT = 5
- Probable MENSUEL = 4
- Probable ANNUEL = 3
- RARE = 2
- IMPROBABLE = 1
Best Answer
-
Should be:
=IF(FREQUENCE@row = "Probable FREQUENT"; 5; IF(FREQUENCE@row = "Probable MENSUEL"; 4; IF(FREQUENCE@row = "Probable ANNUEL"; 3; IF(FREQUENCE@row = "RARE"; 2; 1)
Answers
-
Should be:
=IF(FREQUENCE@row = "Probable FREQUENT"; 5; IF(FREQUENCE@row = "Probable MENSUEL"; 4; IF(FREQUENCE@row = "Probable ANNUEL"; 3; IF(FREQUENCE@row = "RARE"; 2; 1)
-
Nic you are my "wow" of the day!
thanks for taking the time
Pat
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 62.4K Get Help
- 364 Global Discussions
- 200 Industry Talk
- 429 Announcements
- 4.4K Ideas & Feature Requests
- 137 Brandfolder
- 129 Just for fun
- 128 Community Job Board
- 446 Show & Tell
- 28 Member Spotlight
- 1 SmartStories
- 284 Events
- 35 Webinars
- 7.3K Forum Archives
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!