Skip to main content
I have a request to create a field called 'Account Type' on the Campaign Member object. If the Campaign member is a Contact, then this should pull in the Type from that Contact's Account. If it is a Lead, then the Account Type field should be populated with 'Lead - No Account Type'.

 

Does anyone know a way for this to be accomplished?
5 risposte
  1. 7 lug 2020, 00:56
    Hi Brittney,

     

    You will need to create a formula text field. Please give this a try:

    IF(ISBLANK(TEXT(Contact.Account.Type)), "Lead - No Account Type", TEXT(Contact.Account.Type))

0/9000