A Salesforce Administrator needs to filter an Opportunity report to display deals that belong to the 'Technology' Industry, and are either in the 'Closed Won' stage OR have an Amount greater than $100,000.
The administrator adds the following field filters to the report:
1. Account Industry equals Technology
2. Stage equals Closed Won
3. Amount greater than 100000
Which filter logic pattern must the administrator configure to achieve this requirement?
- 1 AND (2 OR 3)Answer
- B(1 AND 2) OR 3
- C1 OR (2 AND 3)
- D1 AND 2 AND 3
Answer
1 AND (2 OR 3)
The expression '1 AND (2 OR 3)' ensures that every record in the report belongs to the Technology industry (Filter 1), while meeting at least one of the secondary criteria: Closed Won stage (Filter 2) or Amount over $100,000 (Filter 3).
Step-by-Step Solution
Key Concept
Report Filter Logic and Boolean Operator Grouping