Trying to return a value of yes or no based on a previous column
My options in my first column (Change Type)
E-mail Change, Phone Number Change, Trainer Change, Department Change, Shift Change, and Pay Change.
In my next Column (Approval Required) I'm trying to get it to show whether approval is required or not which is not the case for E-mail or phone number change. I have have tried several formulas to get this to work, My most recent :
=IF([Change Type]@row = "E-mail Change","No","Yes"),or(if([Change Type]@row="Phone Number Change", "No", "Yes"))
I've also tried:
=IF([Change Type]@row = "E-mail change", OR("Phone Number Change", "No", "Yes"))
=IF(OR([Change Type]@row = "E-mail Change", [Change Type]@row = "Phone Number Change", "No", "Yes"))
=IF(OR([Change Type]@row = "E-mail Change"), [Change Type]@row = "Phone Number Change", "No", "Yes")
Best Answer
-
Here it is:
=IF(OR([Change Type]@row = "E-mail change", [Change Type]@row = "Phone Number Change"), "No", "Yes")
Answers
-
Try something like this...
=IF(AND([Change Type]@row <> "E-mail Change", [Change Type]@row <> "Phone Change"), "Yes", "No")
-
-
Here it is:
=IF(OR([Change Type]@row = "E-mail change", [Change Type]@row = "Phone Number Change"), "No", "Yes")
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.2K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 85 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!