Skip to main content
I want to create a "read only" field that will idenify on the contact record those contacts that are cusotmers of ours.  This is for a MailChimp integration.

 

Can I create a new field that will look up the Account Rating and only if Customer mark the contact as True or like similar?

 

Thank you!!!
3 Antworten
  1. 22. Sept. 2016, 20:29

    Absolutely. You can create a custom field on Contact object like this:

    • Data Type: Formula
    • Return Type: Checkbox
    • Formula:

    TEXT(Account.Rating) = "Customer"

    The checkbox will be checked if the related account's rating is customer otherwise it remains to be unchecked.

     

    That's it.
0/9000