Sublist filtering

Hello everyone.
I tried to filter a sublist which contains true and false. I want to include all points, but only the lists that contain false.

Can you help?

Use FilterByBoolMask node. β€œIn” output will be true, while β€œOut” output will be false

Hi @jacob.d.nielsen ,

If you want to check if all items, per sublist, are equal, you could use multiple methods (both with the same output):

  • List.AnyFalse, set to @@L2.
  • List.AllTrue, set to @@L2 with a NOT gate behind it.

Then using a List.FilterByBoolMask node you can filter on just the lists that completely match or not.

2 Likes

It works, thank you very much.