function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Farhan NoorFarhan Noor 

Concatenate fields to Create Opportunity name

Hi,
       I need to concatenate 3 fields to create opportunity name.
Account name (Lookup field) =Test
Product(Picklist)= ABC
Close date(Date)=11-08-2016
Opportunity name(Read only) = Account name +Product+Date
Opportunity name =Test-ABC-11-08-2016
Can you guys help. Thanks
Lalit Mistry 21Lalit Mistry 21
Hi Farhan,

You can create a workflow rule on opportunity with field update action to update opportunity name using below formula (assuming Product__c is field on account).
Account.Name  & TEXT(Account.Product__c) &  TEXT( CloseDate )