It's impossible to set up a first mandatory condition and pair it with a bunch of accessory conditions to filter data. Nesting "or" conditions into one "and" condition is quite frequent, especially when your scenario is meant to process a lot of data.
Is it possible to setup a filter as follows: X AND (A OR B OR C OR D .... ). I know I can do (A AND X ) OR (B AND X) OR (C AND X) .... but I was hoping to avoid that extra work.
-------------------------
BEST PRACTICE:
Employ two filters with a dummy Router module between them: first with the mandatory condition and second with a bunch of accessory conditions.
SEE ALSO:
Created by Tereza Klobouckova
·