Skip to main content
Ed Donaldson ha fatto una domanda in #Data Management
I'm trying to create a validation rule which will block the insertion of a contact if the contact is related to an account and has a mailing postal code different from the account's shipping postal code.
4 risposte
  1. 8 nov 2017, 02:14
    Hello Ed,

     

    Your validation rule will simply be this:

    AND(

      NOT( ISBLANK( Account.Name) ),

      MailingPostalCode <> Account.ShippingPostalCode

    )

     

    Copy paste this when creating a new validation rule on the Contact object and you should be golden!
0/9000