Complicated IF, AND, OR statement
Jordan Ionita
✭✭✭✭
Hi,
I am trying to figure out the formula for the following:
If the "Department Title" is "Technical Operations, Head End Ops or Design Engineer" and the "State" is "WA", then mark as "Giovan"; if the "Department Title" is "Technical Operations" and the "State is "CA or OR", then mark Ilse; if the "Department Title" is "Construction", then mark "Ashley"; if the "Department Title" is "Retail, or Sales, or Marketing", then mark "Paula; if the "Department Title" is "Warehouse or Facilities or Finance or Network Engineering", then mark "Pri", otherwise, mark "Marrianne".
LOL - I am loosing my mind over trying to figure out the formula :)
Answers
-
Try the below:
=IF(AND(OR([Department Title]@row = "Technical Operations", [Department Title]@row = "Head End Ops", [Department Title]@row = "Design Engineer"), State@row = "WA"), "Giovan", IF(AND([Department Title]@row = "Technical Operations", OR(State@row = "CA", State@row = "OR")),"Ilse", IF([Department Title]@row = "Construction", "Ashley", IF(OR([Department Title]@row = "Retail", [Department Title]@row = "Sales", [Department Title]@row = "Marketing"), "Paula", IF(OR([Department Title]@row = "Warehouse", [Department Title]@row = "Facilities", [Department Title]@row = "Finance", [Department Title]@row = "Network Engineering"),"Pri", "Marrianne") ) ) ) )
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 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!