True/False = False

Hi!

I want to combine two lists with true/false values into one. Then I want to transpose the list, and I only want a true return if both values are true. If there is a true and a false, I want a false return. Currently, when using List.Contains = True, I get a true value even if it’s true/false.

How can I fix that?

Thanks

List.AllTrue @L2

2 Likes

Fast and correct! Thank you for the solution!