I know the formula language supports && in an ifthen statement.
1. Does it support || for ORing conditions?
2. Can TRUE or FALSE be returned from a conditional, for example, IFTHEN( varA = varB, TRUE, FALSE)?
Here's what I'm trying to accomplish in a workflow formula.
ifThen(entity\isAttributeChanged(billingContact) || entity\isAttributeChanged(billingEmail) || ifThenElse(entity\isAttributeChanged(billingAddres sStreet), array\includes(status, "Active"))
I'm already using the "Any" condition to perform the workflow if the Account is one of several "Types", so I can't add this into that.
Thanks
1. Does it support || for ORing conditions?
2. Can TRUE or FALSE be returned from a conditional, for example, IFTHEN( varA = varB, TRUE, FALSE)?
Here's what I'm trying to accomplish in a workflow formula.
ifThen(entity\isAttributeChanged(billingContact) || entity\isAttributeChanged(billingEmail) || ifThenElse(entity\isAttributeChanged(billingAddres sStreet), array\includes(status, "Active"))
I'm already using the "Any" condition to perform the workflow if the Account is one of several "Types", so I can't add this into that.
Thanks
Comment