I have a Workflow in SharePoint 2013 that uses a Multiple Choice field, "Service Center". Users may choose one or more Service Centers for an Item. Essentially, if the Service Center "ANTC" is selected, then the group "ANTC" is assigned edit permissions for that item.
The problem is, in my Run If node, I can either use "equals" or "contains". If there were only ONE selection, I could use "equals". But since there can be multiple selections, I have to use "contains". Now, two of my choices are similar, "CSC" and "KCSC". If a user chooses "KCSC", then two things happen:
- The Run If for "Contains KCSC" returns true.
- The Run If for "Contains CSC" ALSO returns true.
What kind of logic can I apply that checks for KCSC, but does NOT include CSC?