An operations manager at a technology firm requests a Salesforce report displaying Accounts and their associated active Assets. The manager requires a custom calculation that evaluates the purchase price of each individual Asset row to output a category label of 'High Value' if the price is greater than 50,000. Which solution should the Salesforce administrator implement to satisfy this requirement?
- Add a row-level formula to the report using an IF conditional logic statement to evaluate each Asset record individually.Cevap
- BAdd a summary formula to the report using PARENTGROUPVAL to evaluate the category label for each individual Asset record.
- CCreate a custom roll-up summary field on the Account object to evaluate the purchase price of each linked Asset record row.
- DAdd a summary formula to the report that evaluates row-level field values prior to summary aggregation.
Cevap
Add a row-level formula to the report using an IF conditional logic statement to evaluate each Asset record individually.
Row-level formulas in Salesforce reports execute logic on every individual row in the report dataset. Using an IF statement within a row-level formula allows the administrator to evaluate each Asset's purchase price field directly and return a text string on a record-by-record basis.
Adım Adım Çözüm
Anahtar Kavram
Row-level formulas evaluate every individual record in a report, whereas summary formulas evaluate grouped or aggregated data.
Tahmini Süre:1m 30s