Skip to main content
Sarah Brune ha preguntado en #Data Management
Hello,

 

I have my "Account Name" in my org to be a client's full name. I need to put 2 formula fields on an associated Opportunity for "First Name" and "Last Name" -- What is the formula I'd need to enter for these two feilds? This formula did not work for me because "Account Name" was not recognized: LEFT(Account.Name, FIND( " ", Account.Name)-1)
1 respuesta
  1. 22 ago 2017, 19:56
    This should work for first name:

     

     

    LEFT(Name, FIND( " ", Name)-1)

     

    Then for the last name just add one instead of subtract one

     

     
0/9000