Decision Table not working when Select form control with Multiple is used

Hello Luke,
In your example, the variable is not a list, but a String. And the string is “[handgun, shorten]”

In your DMN, you should test if this string contains “handgun”.

With the FEEL language, I don’t think you can test that

and

But with the JUEL language, you can do it

visit

and you should be able to do
firearmAttributes.matches(“handgun”)
Note that you have to map the DMN column to the variable “firearmAttributes”

Could you try this:
1/ in the DMN table, move the expression language to Juel
2/ in your rule, add the expression firearmAttributes.matches(“handgun”)

Best,