I created a Choice Multiple parameter and when i start the workspace i can check some values. But how can i test on the checked values? I tried a tester but that doesn't seem to work.
Page 1 / 1
It's much more difficult than it should be, especially if any of your choices contain spaces!
You could use the MultiChoiceParamSplitter custom transformer to put all your choices in a list and then use a ListSearcher to test for if a value matches one of the list items.
You can turn the parameter into a comma separated list, and then use this as the value with the IN operator in the tester. If you have no spaces in your options this is fairly straightforward to do.
Thanks, that works.