2 lists of booleans in "and" function

Hi,

So I was wondering how you can make the “And” node working with two different lists full of booleans.
For example:
list1:
image
list2:
image

Result
1: true
2: false
3: false
4: false
5: false
6: false
7: false
8: true
9: false
10: false
etc

Thanks in advance!

Edit:
image

@remco.dejong ,

what do you want? join the list?

or count all true and false together?

Use the &&

2 Likes

I wanted it to check if both values were true, and if it were so then make it display a true value
if only one of the two, or none is a “true” then it should display false, just like Alien commented below.

Great thanks, exactly what I needed. Of some nodes you just dont know the existence.

1 Like