IF AND OR Formula
Hi,
I need a formula that will default to a specific value if two criteria are met. If "Approved" and "Not Started" Or "Draft" Change the final status to "Excluded" else use what is in the other status from Service Now.
=IF(AND([Exclusion Status]@row = "Approved", [Service Now Addenda Status]@row = "Not Started"), OR([Service Now Addenda Status]@row = "Draft"), "Excluded", [Service Now Addenda Status]@row)
Answers
-
Hi MJ!
The OR operator is in the wrong place. It should preceded both OR conditions like AND does in your argument set.
Try this!
=IF(AND([Exclusion Status]@row = "Approved", OR([Service Now Addenda Status]@row = "Not Started",[Service Now Addenda Status]@row = "Draft")), "Excluded", [Service Now Addenda Status]@row)
😊
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
Check out the Formula Handbook template!