I have two lists of boolean results.(9 items each) - refer to left side in the image
I need to apply this one by one to a single list of 9 items (refer to right side in the image) and collect the IN list of two sets from the above line by using List.Filterboolbymask
Hi Karthikeyan, welcome
I’m not sure what you are after as your request is not clear
If you are trying to combine the two lists before applying there are 3 ways to combine using boolean logic and, or and xor.
- And - True if all values are True
- Or - True if any value is True
- Xor (Exclusive Or) - True if values are not equal