Multiple IF/AND Statements
Hoping someone can assist me with a formula. I've spent quite a bit of time trying to figure it out on my own and can't seem to get it.
I have multiple criteria to determine the value of a field. The field values would be Ops, G1, NG2, G2, and Full depending on various criteria. Here is the logical expression:
If [Tshirt]= "Small" and [PM] = No, then "Ops"
If [Tshirt]= "Small" and [PM] = Yes, then "G1"
If [Tshirt]= "Med" and [Impacted] = 1, then "NG2" *note [Impacted] is a multiple selection field and I simply want to know if more than 1 value has been selected
If [Tshirt]= "Med" and [Impacted] > 1 then "G2"
If [Tshirt]= "Large" then "Full"
Any help is greatly appreciated
Thanks!
Comments
-
=IF(Tshirt@row = "Small", IF(PM = "No", "Ops", "G1"), IF(Tshirt@row = "Med", IF(COUNTM(Impact@row) = 1, "NG2", "G2"), IF(Tshirt@row = "Large", "Full")))
Give that a whirl.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.9K Get Help
- 474 Global Discussions
- 208 Use Cases
- 517 Announcements
- 5.6K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 84 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!