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
Jaya Prakash MerepalaJaya Prakash Merepala 

how to reference two multiselect picklist fields?

Hi,

I am trying to copy field values from one object to other. I have a field "Cure Types" which is a multiselect picklist with values "A","B","C","D" and "E". I have this field on both "Opportunity" object and also on a custom object called "Cure". I build a process builder to copy the value from Opp to Cure whenever a new record is created in Cure.

I was unable to find the field in PB (even though they have Master-detail relationship) so I started using formula.

Crieria
NOT(ISBLANK([Cure__c].Opportunity__r.Cure_Types__C))
Action
what should be the action to copy the field value from Opp to Cure?