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 232
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