I have the current expression as a workflow filter.
AND([Type]=“Traffic Signal”,[Status Complete] = “YES”)
I just want to add one more value in additional to the current value “Traffic Signal”. I want to include the value “Emergency Traffic Signal” Not sure how to write the expression properly to include that additional value or if the expression has to change all together.
Thanks!
Solved! Go to Solution.
AND(
OR(
[Type] = "Traffic Signal",
[Type] = "Emergency Traffic Signal"
),
[Status Complete] = "YES"
)
User | Count |
---|---|
16 | |
8 | |
7 | |
3 | |
2 |