If I add two filters like the below picture, the first row(of which Status is Done) is not filtered by the first rule.
I think it is because two rules are connected by AND without parenthesis like “Not(Status.Contains(“Done”)) AND (true) OR (true)”, which always becomes true.
So if I add parenthesis to the second rule, the first filter works.
It is confusing to use.