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
Chandra PrakashChandra Prakash 

How to get Picklist value

Hi,

I have on picklist it store some number EX: (1,2,3,4,5,6,7,8)
i want to get this number by using Formula Field..
Best Answer chosen by Chandra Prakash
SFDC_DevloperSFDC_Devloper
Hi Prakash,

    To get The Selected Value from Picklist you can try TEXT(Picklist Field Name). It will return the Selected Picklist Value.

  Example:TEXT(Candidate__r.Location__c)

Thanks,
Rockzz

All Answers

SFDC_DevloperSFDC_Devloper
Hi Prakash,

    To get The Selected Value from Picklist you can try TEXT(Picklist Field Name). It will return the Selected Picklist Value.

  Example:TEXT(Candidate__r.Location__c)

Thanks,
Rockzz
This was selected as the best answer
Chandra PrakashChandra Prakash
Thanks,

Rcokzz




 Thanks...