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
Ramaprasad SangameshwarRamaprasad Sangameshwar 

How to retrieve Field Value in Labels from Multi-Select Picklist Field

With Spring 17, The Picklist Field Values have each an API. 
When storing a Multi-Select Picklist field, the API names are stored in the order the Values are created. 

Is there a way to get the Labels of the Picklist Values from the Field? 
(we used Custom_Object__c.GET(field_name__c)  to get the field value).  
Roshni RahulRoshni Rahul
Hi Ramaprasad,

To get the Labels of Picklist Values from the field,

string test = field_name__c;
list<striing> = test .split(';');

Hope it helps,
Regards 
Roshni