You need to sign in to do that
Don't have an account?
How to create workflow to update multiple picklist in salesforce?
I need to create a workflow field update to update multiple values in a multi select picklist. Is there any way to do this?
You need to sign in to do that
Don't have an account?
May use trigger as an alternative.
In the following test code, I have field DealerRegions__c multiple select picklist on object Maker__C.
trigger UpdateMultipleSelectPickList on Maker__c(before insert,before update)
{
for(Maker__C maker : trigger.new)
{
maker.DealerRegions__c = 'Region1;Region2';
}
}
Universal Picklists
https://appexchange.salesforce.com/listingDetail?listingId=a0N30000000pvmXEAQ