I got the issue. You are using custom field (__c) but we need to use saleforce standard field only. And According to task we also need to check IsBlank for account level check also. We need to execute below formula only when Acount lookup is not blank on contact object.
AND( NOT(ISBLANK(AccountId)), MailingPostalCode != Account.ShippingPostalCode ) NOTE:- All API name also mention in task.
I can not see the screen shots to see what the question was and if it is resolved. I have had a number of questionsk, but I have given up on getting answers from salesforce by now.
becky
I know this is an old thread, but can someone please explain to me why the != was needed? It was my missing link per say in passing this challenge, but cannot figure out why.
You can try the below validation rule, it will help you to complete your challenge. AND( NOT(ISBLANK(AccountId)), MailingPostalCode <> Account.ShippingPostalCode )
If you find your Solution then mark this as the best answer.
Please try below validation rule :-
Please mark this as solution if this will help you.
Thanks,
Amit Chaudhary
AND( NOT(ISBLANK(AccountId)), MailingPostalCode != Account.ShippingPostalCode )
NOTE:- All API name also mention in task.
Please let us know if this will help you
Please mark above as best Answer if above solution helps you and you are able to clear your challenge.
Thanks,
Amit Chaudhary
Please mark above as solution if you issue is resolved
Hi
Try using the below code. Also make sure you are putting this validation rule on Contact and not Account.
You can try the below validation rule, it will help you to complete your challenge.
AND(
NOT(ISBLANK(AccountId)),
MailingPostalCode <> Account.ShippingPostalCode
)
If you find your Solution then mark this as the best answer.
Thank you!
Regards
Suraj Tripathi