List.Contains not working!

Hi,
I need to compare the list generated by the Element.GetParameterValueByName node with a list of values.
I would need to get something like:

false
false
false
false
true
true
true
true
true
true
false

1 Like

Remember the item is what gets checked. So if you want a value for each of the 31 elements, then those elements need to be the items you’re checking. From there, you just need to use list levels to check each item against the list individually.
image

1 Like

Thanks !