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 ?