IF OR Formula Help!

Hello!
I'm trying to put together a formula in the Posted To field pictured below, to return a result of either "Internal" or "External."ย The formula I'm using is below.
=IF(OR([Portal Status]@row = "Posted", [ATS Posted]@row = "internal"), "Internal", "External")
This formula returns an "Internal" result but I can't quite figure out how to get it to return an "External" result or a blank result.
ย
What I'm looking to accomplish is the following...ย
ย If the Portal Status = Posted AND the ATS Posted = Internal, then the Posted To column should read "Internal"ย
ย If the Portal Status = Posted AND the ATS Posted = Careers, then the Posted To column should read "External"ย
ย If the Portal Status = Posted AND the ATS Posted = Web Post: Broadbean, then the Posted To column should read "External"ย
If the Portal Status = Canceled AND the ATS Posted= Internal, then the Posted To column should read "Not Posted"
If the Portal Status = Canceled AND the ATS Posted= External, then the Posted To column should read "Not Posted"
ย If the Portal Status = Canceled AND the ATS Posted = Web Post: Broadbean, then the Posted To column should read "Canceled"ย
If the Portal Status = BLANK AND the ATS Posted= BLANK, then the Posted To column should read "BLANK"
Any suggestions are much appreciated. ๐
Best Answers
-
Hi @Beecher2019,
See if this works for you.
=IF(AND([Portal Status]@row = "Posted", [ATS Posted]@row = "Internal"), "Internal", IF(AND([Portal Status]@row = "Posted", OR([ATS Posted]@row = "Careers", [ATS Posted]@row = "Web Post: Broadbean")), "External", IF(AND([Portal Status]@row = "Canceled", OR([ATS Posted]@row = "Internal", [ATS Posted]@row = "External")), "Not Posted", IF(AND([Portal Status]@row = "Canceled", [ATS Posted]@row = "Web Post: Broadbean"), "Canceled"))))
Hope this helps,
Dave
-
Yes! Thank worked, thank you!! Happy Holidays. โบ๏ธ
Answers
-
Hi @Beecher2019,
See if this works for you.
=IF(AND([Portal Status]@row = "Posted", [ATS Posted]@row = "Internal"), "Internal", IF(AND([Portal Status]@row = "Posted", OR([ATS Posted]@row = "Careers", [ATS Posted]@row = "Web Post: Broadbean")), "External", IF(AND([Portal Status]@row = "Canceled", OR([ATS Posted]@row = "Internal", [ATS Posted]@row = "External")), "Not Posted", IF(AND([Portal Status]@row = "Canceled", [ATS Posted]@row = "Web Post: Broadbean"), "Canceled"))))
Hope this helps,
Dave
-
Yes! Thank worked, thank you!! Happy Holidays. โบ๏ธ
Help Article Resources
Categories
Check out the Formula Handbook template!