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! Go to 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"})
)
User | Count |
---|---|
14 | |
11 | |
9 | |
7 | |
4 |