Help needed for a Nested Expression "AND, IF LOOKUP, OR"

Trying to make an expression for only if this condition true section in Action Behaviors. After adding the code below, I can't use the actions. Seem like a magic touch needs, to simplify and rearrange this expression.

Thanks for the help.

 

 

 

AND(
IF(
LOOKUP(USEREMAIL(), “STAFF”, “E-MAIL”, “FUNCTION” )="APPROVE",TRUE,FALSE),
OR(
[Status]="waiting",
[Status]="cancel")

 

 

 

Solved Solved
0 2 104
1 ACCEPTED SOLUTION

It doesn't appear you have complete syntax in what was posted and YES it can be simplified to:

AND(
    LOOKUP(USEREMAIL(), “STAFF”, “E-MAIL”, “FUNCTION”) = "APPROVE",
    IN([Status], {"waiting","cancel"})
)

 

View solution in original post

2 REPLIES 2
Top Labels in this Space