Hello I need help with CONTAINS()

Hello I am trying make a condition yes/no for a action

I am trying to get two columns to work so it comes back true
CONTAINS([Asset], โ€œLDBโ€) & CONTAINS([Job Plan], โ€œJP1โ€)

this one works by itself fine
CONTAINS([Asset], โ€œLDBโ€)
but i want to add this also
CONTAINS([Job Plan], โ€œJP1โ€)

Any help will be much appreciated

Solved Solved
0 4 325
1 ACCEPTED SOLUTION

OR(CONTAINS([Job Completion], โ€œIn Progressโ€) , CONTAINS([Job Completion], โ€œNot Startedโ€))

??

View solution in original post

4 REPLIES 4

Wrap the two expression by and() expression.

AND(CONTAINS([Asset], โ€œLDBโ€) , CONTAINS([Job Plan], โ€œJP1โ€))

what you I do if i want it to be like or between them

ANY(CONTAINS([Job Completion], โ€œIn Progressโ€) , CONTAINS([Job Completion], โ€œNot Startedโ€))

so if there is Not Started or In Progress it comes back true

OR(CONTAINS([Job Completion], โ€œIn Progressโ€) , CONTAINS([Job Completion], โ€œNot Startedโ€))

??

Thanks very much for the help and fast reply it worked great
Have a great Day

Top Labels in this Space