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 respostas
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.