A Salesforce System Administrator at Cloud Kicks is designing an Opportunity report grouped by Account Name and Opportunity Stage. The business requires two specific calculations within the report:
1. Evaluating the elapsed duration in days between Created Date and Close Date for each individual opportunity record.
2. Calculating the percentage of total opportunity amount contributed by each Stage grouping relative to the parent Account Name grouping total.
Which two statements accurately describe the correct technical approach to fulfill these reporting requirements? (Select 2)
- A row-level formula must be created on the report to calculate the duration in days between Created Date and Close Date for each individual record.Answer
- BA summary formula should be configured to evaluate the duration in days between Created Date and Close Date for each individual opportunity record before grouping occurs.
- A summary formula utilizing the PARENTGROUPVAL function must be created to calculate the percentage contribution of each Stage relative to its parent Account Name grouping.Answer
- DA custom roll-up summary field should be created on the Account object via its lookup relationship to Opportunities to calculate the stage contribution percentage for the report.
Answer
To satisfy the requirements, the administrator must create a row-level formula for the individual record duration calculation and a summary formula utilizing the PARENTGROUPVAL function to evaluate the stage subtotal percentage relative to the parent account grouping.
The solution requires two distinct report formula types based on evaluation context. First, evaluating record-level date differences requires a row-level formula because row-level formulas process individual detail records. Second, computing the ratio of a subgroup subtotal to its parent group total requires a summary formula with the PARENTGROUPVAL function, which explicitly references parent grouping values in report structures.
Step-by-Step Solution
Key Concept
Distinguishing Row-Level vs. Summary Formulas and PARENTGROUPVAL Grouping Calculations