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 235
1 ACCEPTED SOLUTION

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

View solution in original post

6 REPLIES 6
Top Labels in this Space