Skip to main content
I need to add Contacts to Accounts,when the Account status is Active.

 

I have created a Custom field on Accounts called Status.When the status is active,Contacts can be added to the respective Account.

 

How do I achieve this?

 

Please help.

 

Thanks inadvance.
6 个回答
  1. 2018年12月12日 08:52
    You'll need to create this validation rule on the contact object:

     

    NOT ISPICKVAL(Account__r.Status, "Active")

     

    *You may need to change the name of your field to match the one you're actually using.
0/9000