I have a tree of distance values that i need to remove any branches containing at least one value that is smaller than 30cm, i tried to do that with booleans, but it didn’t work because one of the values in the branch still “true”. the idea is to remove any branches that contain a false statement.
how can i filter only the “true true” values as shown at the Branch {0}? keep in mind that it will have much more branches, and a simple list item component won’t be optimal.
You could use Not and then Mass Addition. All False values will count as 0, all True as 1. So if the Sum if strictly positive it means you originally has at least a False value.