
Hi, is there a way to group these ORs together, so that the logic is as follows:
IF the country is "US" AND the State is either ("California" OR "Oregon" OR "Washington")
Thanks in advance.
*This post is locked for comments
I have the same question (0)Hi Dave,
Thanks for reaching out. Sorry in the business rules you cannot combine AND, OR statements.
An alternative is to handle at the point of entry. Create a Business Rule that shows
IF State = Cal/Org/WA AND Country NOT = United States THEN throw alert or something.
Now you can create this business rule without having to check if the country is United States, because the other rule handles that.
Verify if this helps, or let me know if more detail is needed. Have a great day!
-Tom