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"
)
AND(
OR(
[Type] = "Traffic Signal",
[Type] = "Emergency Traffic Signal"
),
[Status Complete] = "YES"
)
Just workflow for flashers
AND([Type]=“Flashing Beacon”,[Status Complete] = “YES”)
@Scott_S
and the question is?
Sorry about that- just a note for myself. Thought it was an internal email
Two thumbs up. Thank you
You’re welcome.
User | Count |
---|---|
15 | |
10 | |
7 | |
3 | |
2 |