ExamGecko
Question list
Search
Search

List of questions

Search

Related questions











Question 226 - Certified Advanced Administrator (CRT-211) discussion

Report
Export

On the Contact record, if a contact has the value of 'CEO' in the Title field, the administrator wants to require the users to also put a phone number in the Phone field.

What formula should the administrator put in the Error Condition Formula of a validation rule to enable this?

A.
Title = 'CEO' && NOT(ISBLANK(Phone))
Answers
A.
Title = 'CEO' && NOT(ISBLANK(Phone))
B.
Title <> 'CEO' && NOT(ISBLANK(Phone))
Answers
B.
Title <> 'CEO' && NOT(ISBLANK(Phone))
C.
Title = 'CEO' && ISBLANK(Phone)
Answers
C.
Title = 'CEO' && ISBLANK(Phone)
D.
Title <> 'CEO' && ISBLANK(Phone)
Answers
D.
Title <> 'CEO' && ISBLANK(Phone)
Suggested answer: C

Explanation:

The error condition formula of a validation rule should return TRUE when the validation rule should fire and display an error message. In this case, the validation rule should fire when the Title field has the value of 'CEO' and the Phone field is blank. The formula Title = 'CEO' && ISBLANK(Phone) returns TRUE when both conditions are met, and FALSE otherwise.

Reference: https://help.salesforce.com/s/articleView?id=sf.fields_useful_field_validation_formulas.htm&type=5

asked 23/09/2024
david tsai
44 questions
User
Your answer:
0 comments
Sorted by

Leave a comment first