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
sapthagiri_186sapthagiri_186 

Multi Picklist Values in Salesforce

Hi,

 

Is there a way to display multi picklist values beyond 150 values. As Salesforce custom multi picklist holds only 150 values in it.  http://login.salesforce.com/help/doc/en/picklist_limitations.htm

 

At the moment I have got around 600 values which I would like to display in a multi-picklist. Any solution/work around would be greatful.

 

Thanks and Regards

 

 

Sachin10Sachin10

One way is to customise the standard functionality and display it using apex:selectList. of Visualforce Page

 

sapthagiri_186sapthagiri_186
Forgot to mention, I am using Professional Edition wherein apex classes are not allowed.
Arunkumar.RArunkumar.R

1. You can create visualforce page in Professional edition with Standard Controller then add <apex:SelectList>

2. You can't add more that 150 values in Picklist.

3. You can add 600 picklist values by spliting those values as a dependant picklist values.

 

 

Please mark this if you found this Best Solution and also give kudos.