Exam Plat-Admn-202 Topic 4 Question 57 Discussion
Actual exam question for Salesforce's Plat-Admn-202 exam
Question #: 57
Topic #: 4
Question #: 57
Topic #: 4
The Universal Containers data manager has been complaining About the lack of data integrity on Contact records. Sales reps have not been filling out the Region field The data manager Wants the Region field filled out only for Contacts that are associated to Accounts that have been marked as 'High Priority' on the Customer Status Field What can the app builder do to fulfil this requirement?
Suggested Answer: C Vote an answer
The validation must happen when a Contact is saved because the missing field is Region on the Contact record. Salesforce validation rules evaluate data before a record is saved and return an error when the formula evaluates to True.
The app builder can create a validation rule on Contact that checks the related Account's Customer Status field and requires Region only when the Account is marked High Priority.
Example logic:
AND(
ISPICKVAL(Account.Customer_Status__c, "High Priority"),
ISBLANK(Region__c)
)
Why others are incorrect:
A is wrong because the missing field is on Contact, not Account.
B is wrong because Customer Status being required does not require Contact Region.
D is wrong because it would require Region for all Contacts, not only High Priority Account Contacts.
The app builder can create a validation rule on Contact that checks the related Account's Customer Status field and requires Region only when the Account is marked High Priority.
Example logic:
AND(
ISPICKVAL(Account.Customer_Status__c, "High Priority"),
ISBLANK(Region__c)
)
Why others are incorrect:
A is wrong because the missing field is on Contact, not Account.
B is wrong because Customer Status being required does not require Contact Region.
D is wrong because it would require Region for all Contacts, not only High Priority Account Contacts.
by vinagre.inesm at Jul 01, 2026, 08:30 AM
0
0
0
10
Comments
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
Report Comment
Commenting
You can sign-up / login (it's free).