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
Kevin Kim 9Kevin Kim 9 

Getting a default value from a picklist

I am currently trying to get a field (picklist) from one record in opportunities and make whatever the user picks as the default value for another field in accounts. Is this possible and if it is, what is the best way to do so? 
Shawn Reichner 29Shawn Reichner 29
I would use Process Builder to fire on Opportunity object when created or edited.  Then make your criteria 1. FIELD ISCHANGED = True.  Then your update action would be to update the Account related to your Opportunity to then set the field on the account to the value selected on the opp for the field that we are looking for a change on.  Hope that makes sense.....

Shawn