Suppose I'm creating a report and I want the following to be returned:
Criteria A AND Criteria B
OR
Criteria A AND Criteria C
OR
Criteria A AND Criteria D
Right now, I have to write a filter just like above - adding Criteria A into every clause. For some reports with many filters, this is very time consuming.
We should have the ability to customize the logic between our filter clauses. For example, I should be able to specify:
Criteria A AND (Criteria B OR Criteria C OR Criteria D)