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).
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