Question

Difficulty: HardStandard/Custom Report Types and Formats

A financial operations manager at a global logistics firm requires a Salesforce report to analyze individual billing transaction records against custom target benchmarks. The manager needs a calculated column evaluating a record-by-record variance formula (Transaction_AmountBenchmark_AmountTransaction\_Amount - Benchmark\_Amount) for every individual transaction row. Additionally, the final report must summarize total transaction values formatted in a multi-dimensional grid grouped by Region along rows and Billing Quarter along columns. Which configuration should the Salesforce Administrator implement to fulfill these requirements?

  1. Use a Matrix report format, define a row-level formula to compute the record-by-record variance, and group the data by Region on rows and Billing Quarter on columns.Answer
  2. B
    Use a Summary report format, create a custom summary formula to evaluate the record-by-record variance, and add joined report blocks for Region and Billing Quarter.
  3. C
    Create a roll-up summary field on the Account object to compute the line-item variance across a lookup relationship, and display the result in a Tabular report grouped by Region.
  4. D
    Build a dynamic dashboard component that leverages the running user's security settings to compute row-level calculations across Region and Billing Quarter.

Answer

Use a Matrix report format, define a row-level formula to compute the record-by-record variance, and group the data by Region on rows and Billing Quarter on columns.
The correct option combines a Matrix report format (which allows grouping by both rows and columns to form a grid) with a row-level formula (which computes calculations for each individual record row).

Step-by-Step Solution

1
Identify the calculation granularity requirement.
Determined that the formula must calculate Transaction_AmountBenchmark_AmountTransaction\_Amount - Benchmark\_Amount for every individual record row.
Row-level formulas evaluate each record individually, whereas summary formulas evaluate grouped aggregations.
2
Identify the layout and grouping requirement.
Determined that the report requires two-dimensional grouping (rows and columns).
Matrix reports allow grouping by both rows (Region) and columns (Billing Quarter) to create a grid view.
3
Combine the report features into a single solution.
Select Matrix report format with a row-level formula.
This combination addresses both row-by-row calculations and two-axis grid grouping.

Key Concept

Selecting Matrix report format for two-axis grouping and row-level formulas for record-by-record calculations.
Rate this question