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
sclosesclose 

Field merge

Is there a way to merge a pick list field and a standard?

Best Answer chosen by Admin (Salesforce Developers) 
Sonam_SFDCSonam_SFDC

Thanks for reply,

 

yes, it is possible to merge a picklist field value a standard field value using a formula field.

 

Use the TEXT(picklist field name) function to fetch the picklist value choosen and use " & " to concatenate the value of standard field...

 

e.g. formula:

 

TEXT(test_pick__c) & FirstName

All Answers

Sonam_SFDCSonam_SFDC

Hi,

 

Your requirement makes me believe you wish to merge the values you select in a picklist and a standard field.

Is that correct? could you please elaborate on the use case so the community folks can advice accordingly.

 

Thanks!

sclosesclose

Yes that is correct.

Sonam_SFDCSonam_SFDC

Thanks for reply,

 

yes, it is possible to merge a picklist field value a standard field value using a formula field.

 

Use the TEXT(picklist field name) function to fetch the picklist value choosen and use " & " to concatenate the value of standard field...

 

e.g. formula:

 

TEXT(test_pick__c) & FirstName

This was selected as the best answer