I need help building a nested IF formula with ORs that implements the following logic: If {Field A} = ValueA OR ValueB then return contents of {Field X}, If {Field A} = ValueC, then return contents of {Field Y}, if {Field A} = ValueD OR ValueE, then return contents of {Field Z}. Thanks!
Hi @Jenny_Pitman,
Since all of your conditions hinge on the value of one field, Iād suggest using the SWITCH()
function. It requires a little bit of repetition of return values, but makes the formula itself much more intelligible when you want to go modify it or add new logic to it later.
SWITCH(
{Field A},
ValueA, {Field X},
ValueB, {Field X},
ValueC, {Field Y},
ValueD, {Field Z},
ValueE, {Field Z}
)
1 Like
Thanks very much, Jeremy. Very helpful! Best regards, Jenny Pitman
This topic was solved and automatically closed 15 days after the last reply. New replies are no longer allowed.