List.Contains

Hi!
I have a list with several values and I would like to know if there is a value between 0 and 89 in the list (0 <x <89). Can someone help me?

Capture

Hi @alt.ctrl ,

Try something like this in a Code Block:

X > 0 && X < 89 ;

From this you’ll get a list of booleans per value, to find out if you have at least 1 use the node List.AnyTrue

1 Like

Thank you!