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"})
)
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"})
)
Thank you so much for the simplified version. I learn a lot from your replies. By the way, when the both expression didn’t worked out. I began to explore where would be the problem is. Then I realized that, on click selection for the actions in card view was empty. I selected the action for click on and I can use it now 🙂
User | Count |
---|---|
14 | |
11 | |
9 | |
7 | |
4 |