Flow switch activity with strings and wildcards

Hello @rodrigo.garcia

when the value does not have space it’ll match the switch case and execute the sequence, but when it contains even a single space whether at the start or end it wont match as the activity is looking for the value without space and
you cannot add two same value with spaces and without spaces as the Flow Switch Activity would not allow you because for the activity these both are the same value.

What you could do is once you get the value from Get Attribute and store it in a variable inside the flow switch Activity and Expression of the activity where you give your variable just add .trim after the end of the variable like this

Trim

It’ll cut all the Extra space from both sides and then it’ll match the respective case
Try it out and let me know if this works