Posted on 16th September 2024|68 views
create a validation rule to check that a contact is in the zip code of its account salesforce?
I am continuously getting an error called create a validation rule to check that a contact is in the zip code of its account salesforce below is my code
AND(ISBLANK( Id ), OR( MailingPostalCode = Account.postalcodeshipping ))
Posted on 16th September 2024| views
Here is the correct validation rule
AND( NOT(ISBLANK( Id )), MailingPostalCode <> Account.postalcodeshipping )