A Salesforce Administrator is designing a customized tracking system for a real estate firm. The schema includes a parent object, Property_Listing__c, and a child object, Open_House_Feedback__c, connected via a Master-Detail relationship. Additionally, Property_Listing__c is related to a standard Account record via a Lookup relationship. The administrator needs to display aggregated metrics on parent records and reference parent fields on child records. Which TWO considerations and capabilities must the administrator keep in mind when configuring Formula and Roll-Up Summary fields? (Select 2)
- Roll-Up Summary fields can be created on Property_Listing__c to aggregate metrics from Open_House_Feedback__c because they share a Master-Detail relationship.Answer
- BA Roll-Up Summary field can be created directly on the Account object to count related Property_Listing__c records linked via the Lookup relationship.
- A cross-object formula field on Open_House_Feedback__c can reference fields from Property_Listing__c and its related Account record.Answer
- DConverting the Master-Detail relationship between Property_Listing__c and Open_House_Feedback__c to a Lookup relationship will maintain existing Roll-Up Summary fields.
Answer
The correct statements are that Roll-Up Summary fields can be created on Property_Listing__c to calculate values from Open_House_Feedback__c due to their Master-Detail relationship, and cross-object formula fields on Open_House_Feedback__c can reference merge fields from parent records up to 10 relationships away.
Roll-Up Summary fields are natively supported on parent records in a Master-Detail relationship, allowing calculations like SUM, COUNT, MIN, and MAX on detail records. Additionally, cross-object formulas on child records can reference field values across both Lookup and Master-Detail relationships up to 10 levels deep.
Step-by-Step Solution
Key Concept
Roll-Up Summary fields require a Master-Detail relationship on the parent master object and block relationship type conversion until removed, whereas cross-object formulas can span across both Lookup and Master-Detail relationships.