Help with simple expression with multiple values

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 Solved
0 6 233
1 ACCEPTED SOLUTION

AND(
    OR(
        [Type] = "Traffic Signal",
        [Type] = "Emergency Traffic Signal"
    ),
    [Status Complete] = "YES"
)

View solution in original post

6 REPLIES 6

AND(
    OR(
        [Type] = "Traffic Signal",
        [Type] = "Emergency Traffic Signal"
    ),
    [Status Complete] = "YES"
)

Just workflow for flashers

AND([Type]=“Flashing Beacon”,[Status Complete] = “YES”)

3X_2_4_2485d26919316b1d80aa60f5ca8e2cb5bc0275fe.jpeg

@Scott_S
and the question is?

Sorry about that- just a note for myself. Thought it was an internal email

3X_3_f_3f002e273fab7dc6712dcc9875486ef7716c21b3.jpeg

Two thumbs up. Thank you

You’re welcome.

Top Labels in this Space