I want to make contact filter (for a segment) of the form
A and B and (C or D or E)
There seems to be no way to group (C or D or E).
A and B and C or D or E groups like (A and B and C) or D or E
Is there a way to group logical subexpressions? I couldn’t find anything on this.
Thanks for that reply. I think your suggestion would work. Keeping it all in one filter expression can work, too, but you have to duplicate some conditions, which Is what I’ve done a little. So
A and B and (C or D) becomes
(A and B and C) or (A and B and D)
.