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. 😊