Skip to main content
Ed Donaldson a posé une question dans #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 réponses
  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