Iferror and / or formula
Hi Expert,
I would like to add another check to below existing formula.
IF(AND [AC Fast track is]@row ="NO") than it should show up yes
current formula:
=IFERROR(IF(AND(OR([Test Level]@row = "A", [Test Level]@row = "B", [Test Level]@row = "C", [Test Level]@row = "D", [Test Level]@row = "E"), OR([Test Analyst]@row = "Sabrina", [Test Analyst]@row = "Thomas", [Test Analyst]@row = "Ina", )), "Yes"), "No")
I tried it but it's not working, how do I need to insert it that I will get the correct result?
Thanks
Best Answer
-
Hi @Christine Menke ,
Try this:
=IFERROR(IF(AND([AC Fast track is]@row ="NO", OR([Test Level]@row = "A", [Test Level]@row = "B", [Test Level]@row = "C", [Test Level]@row = "D", [Test Level]@row = "E"), OR([Test Analyst]@row = "Sabrina", [Test Analyst]@row = "Thomas", [Test Analyst]@row = "Ina")), "Yes", "No"),"")
This translates to:
IF the [AC Fast track is] in this row is No, AND [Test Level] in this row is either A, B, C, D, or E, AND [Test Analyst] in this row is either Sabrina, Thomas, or Ina, show "Yes"; otherwise show "No". If there is an error in calculating the formula, leave the cell blank.
If you would rather have the error not return blank, but rather return "No", simply replace "" with "No".
Let me know if that works for you.
Best,
Heather
Answers
-
Hi @Christine Menke ,
Try this:
=IFERROR(IF(AND([AC Fast track is]@row ="NO", OR([Test Level]@row = "A", [Test Level]@row = "B", [Test Level]@row = "C", [Test Level]@row = "D", [Test Level]@row = "E"), OR([Test Analyst]@row = "Sabrina", [Test Analyst]@row = "Thomas", [Test Analyst]@row = "Ina")), "Yes", "No"),"")
This translates to:
IF the [AC Fast track is] in this row is No, AND [Test Level] in this row is either A, B, C, D, or E, AND [Test Analyst] in this row is either Sabrina, Thomas, or Ina, show "Yes"; otherwise show "No". If there is an error in calculating the formula, leave the cell blank.
If you would rather have the error not return blank, but rather return "No", simply replace "" with "No".
Let me know if that works for you.
Best,
Heather
-
Thanks a lot @Heather Duff ,
It works!😀
-
@Christine Menke Fantastic! So glad it worked. Have a great weekend.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 66K Get Help
- 429 Global Discussions
- 149 Industry Talk
- 488 Announcements
- 5.2K Ideas & Feature Requests
- 85 Brandfolder
- 152 Just for fun
- 74 Community Job Board
- 499 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 305 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!