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
- 64.3K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 142 Just for fun
- 59 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 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!