Hello everbody,
I am fairly new to alteryx and have currently run into a problem with my workflow.
Basically I need to check users for actions. If they can do that they cannot do this.
I concatenated each users action into a long string. Then i am checking the actions (concatenated string) if they contain certain actions. If there is a match then the user has actions that they should not have.
The problem is right now i am using a contains function: Contains([Concat_Value], [ListOfActions]) and this is giving me an inaccurate output since
there are values in the Concat_Value that have the string of an action in ListOfActions.
Example:
concat_value : i go skiing, i go swimming, i go skiing
listofactions: i go, xxx, xxx
This gives me a hit. The user has conflicting actions but they actually do not since it is not an exact match.
It then matches: I run -> Conflicts with -> I go , although the user has i go skiing witch is then possible in this example. Only if the user has the action "i go" then it would be a conflict.
Basically how can i look for the exact string?
Thank you in advance!
Cheers