View all questions & answers for the CRT-402 exam
Cloud Kicks wants to make sure that users without the Marketing role are unable to update the Contact Retail Opt In picklist field to Yes.
What validation rule would an app builder use to prevent other users from making this update?
AND( $UserRole.Name != 'Marketing',ISCHANGED(Retail_Opt_In__c), ISPICKVAL(Retail_0pt_In_c,"Yes") )
AND( $UserRole.Name != 'Marketing', Retail_Opt_In_c = "Yes" )
AND( $UserRole.Name = 'Marketing', ISPICKVAL(Retail_Opt_In_c,"Yes") )
AND( $UserRole.Name = 'Marketing', Retail_Opt_In__c= "Yes" )
Submit