I got a weird behaviour with the list.contains node.
as you can see in the image with red arrow ‘a’, and red arrow ‘b’ both values are the same, but why does list contains return false(red arrow ‘c’)?
It’s likely that there’s internal rounding that shows the same number even though they have different values. Just round to a couple decimal places and you should be fine.
Hi @Draxl_Andreas@Nick_Boyts
both thanks for your replies.
I did multipy the values by 1 million but stil no difference between them. So i went with the math.round, and now the ‘bool’ list is correct.