I have a customer multi-select field. Unfortunately there are multiple custom fields of the same name. I'm trying to use a condition to create a subtask based on values of the field. I can create a list based on the custom field, iteration through the values
The logging indicates its picking up the values and setting the return var. However the condition is always evaluating as true (creating the subtask)
the example code snippets are pretty simplistic and typically have a boolean condition between two fields.
How can I pass the value of my check out, so that the condition picks it up?
thanks
Simon
Hello @sclarke-aptos-com ,
Your logic and script seem fine. I would add .getValue() so you can compare Product1 values to a String, i.e. :
if (it.getValue() == "A") { ... }
Let me know if that helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.