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
kshannonkshannon 

Adding values to and existing picklist

Hey,

 

I am looking to add additional fields to a picklist. It has multiple values as it is... and I'm trying to just add more onto it..

 

Would I do a += or a .= for the actual value? I don't want it to replace, I want it to concatenate.

blombardisblombardis

I'm not sure if I understand you correctly.

 

If you are using a List to create your picklist you can add another element to the list:

myList.add(value);

 

If you are trying to concatenate to a String use "+="

 

But im not sure how you are creating your picklist.

 

Please let me know if you can resolve your issue.