function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Raushan KumaRaushan Kuma 

i'm not able to complete challenge of topic 'creating validation rule'. please help me

Best Answer chosen by Raushan Kuma
NagendraNagendra (Salesforce Developers) 
Hi Raushan,

Firstly you didn't mention what exactly is the error you are facing while validating this challenge.Below is the validation rule which worked for me in my developer org to validate this challenge.
AND((MailingPostalCode <> Account.ShippingPostalCode), NOT(ISBLANK( Account.Name )))
Note: Validation rule should restrict only new contacts.

Please mark this as solved if it's resolved so that it gets removed from the unanswered queue which results in helping others who are encountering similar issue.

Best Regards,
Nagendra.
 

All Answers

NagendraNagendra (Salesforce Developers) 
Hi Raushan,

Firstly you didn't mention what exactly is the error you are facing while validating this challenge.Below is the validation rule which worked for me in my developer org to validate this challenge.
AND((MailingPostalCode <> Account.ShippingPostalCode), NOT(ISBLANK( Account.Name )))
Note: Validation rule should restrict only new contacts.

Please mark this as solved if it's resolved so that it gets removed from the unanswered queue which results in helping others who are encountering similar issue.

Best Regards,
Nagendra.
 
This was selected as the best answer
Raushan KumaRaushan Kuma
THX.. IT WORKS FOR ME