Nickname_c is a custom text field on a contact record that is utilized to override the contact name appearing on an email template. This field is not required and is not always filled in. Which formula should an app builder use to select the contact's preferred name for email communications?
A. IF(NOT(ISBLANK(Nickname__c)),Nickname__c,FirstName)
B. IF(TEXT(Nickname__c),Nickname__c,FirstName)
C. IF(ISNULL(Nickname_c),Nickname_c,FirstName)
D. IF(NOT(BLANKVALUE(Nickname__c)),Nickname__c,FirstName)
Suggest answer: A
Reference:
No comments:
Please share to make the community better.