And Gate

Hi guys,
it seems like a simple task but I am unable solve. I want ‘True’ as answer when both items are ‘True’.

For example
True , True = True
True, False = False
False, True = False
False, False = False

But I want to do that to the whole list altogether. Is it possible to apply ‘And’ logic to the whole list ? or maybe AND node is not functioning properly ? did anyone faced similar problem ?

I guess the And node can’t handle Lists.

Hi @hassan.orion ,

Use the && node instead

You beat me to it :stuck_out_tongue_winking_eye:.