I am trying to check a multiple choice field on containing a specific value but it doesn't really work. I am not sure if that is because I have a
problem with the logic or if that is a SPD problem.
I created a Content Type "Test CT" (based on the "item" content type) and added two Site Columns of the type "choice", named "Test Column 1" and
"Test Column 2" to that content type. Both choice fields are configured to contain multiple values and can contain the identical values "Product
ABC" and "Product XYZ". Additionally I added Site Column of the type "Single Line of text", named "Result" to the content type. Then I added the
content type to the custom list "Test List".
Now I built the Reusable Sharepoint Designer Workflow "Test WF" that is based on this content type and that works like this:
======================
Set "Result" to String "Start"
If "Test Column 1" contains String "Product ABC"
Set "Result" to String "Test Column 1 contains ABC"
Else If "Test Column 1" does not contain String "Product ABC"
Set "Result" to String "Test Column 1 does not contain ABC"
======================
Then I
View Complete Post