Pull an account's number (custom auto number field on the account object) and place “SE-“ in front of the auto account number field that is generated from Salesforce.
Example, if the auto account number is 1234, then the formula would pull that and add SE- to it, making it SE-1234.
5 respuestas
Hi Jacob, Please try the below
IF(ISBLANK(Opportunity.Account.Account_Number__c),
NULL,
"SE-" + Opportunity.Account.Account_Number__c
)
Please use the insert field button to select the field API Name of auto account number field by navigating to
Quote > Opportunity > Account > Custom Auto Number field