
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
This should work for first name: LEFT(Name, FIND( " ", Name)-1)
Then for the last name just add one instead of subtract one