A Salesforce Administrator is tasked with configuring a custom Opportunity report to track annual cloud subscription renewals. The business requirements state:
1. Group Opportunities into three revenue tiers ('Tier 1', 'Tier 2', and 'Tier 3') based on the Amount field without modifying object metadata or creating custom fields.
2. Include Opportunities that are either in the 'Closed Won' Stage OR have an Amount greater than $100,000 with a Probability greater than 70%.
3. Restrict all report results exclusively to records where Type equals 'Cloud Subscription'.
Which TWO configuration steps must the administrator execute to fulfill these requirements? (Select TWO)
- Add a Bucket Field based on the Amount field to categorize records into 'Tier 1', 'Tier 2', and 'Tier 3' ranges.Answer
- Set the Filter Logic to (1 OR (2 AND 3)) AND 4, where 1 is Stage = Closed Won, 2 is Amount > 100000, 3 is Probability > 70%, and 4 is Type = Cloud Subscription.Answer
- CCreate a Row-Level Formula on the report using summary aggregate functions to output 'Tier 1', 'Tier 2', and 'Tier 3'.
- DSet the Filter Logic to 1 OR 2 AND 3 AND 4 without parentheses to evaluate conditions sequentially from left to right.
- EAdd a Cross Filter specifying Opportunities WITH Cloud Subscriptions to group records by revenue tiers.
Answer
The administrator must create a Bucket Field on the Amount field to define revenue tiers without custom schema fields, and configure custom Filter Logic formatted as (1 OR (2 AND 3)) AND 4 to enforce correct Boolean grouping across the stage, amount, probability, and type criteria.
Creating a Bucket Field directly on the Amount column satisfies the grouping requirement without requiring custom fields or Object Manager configuration. Applying filter logic structured as (1 OR (2 AND 3)) AND 4 ensures that either the Closed Won criteria or the high-value/high-probability pipeline criteria is met while mandating that every matching record belongs to the 'Cloud Subscription' Type.
Step-by-Step Solution
Key Concept
Report Bucket Fields and Boolean Filter Logic Grouping
Estimated Time:2m 0s