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
- Customer Resources
- 65.1K Get Help
- 444 Global Discussions
- 142 Industry Talk
- 472 Announcements
- 5K Ideas & Feature Requests
- 83 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 489 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 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!