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
Jeff Rozner 39Jeff Rozner 39 

Can you create a workflow rule that updates a field in a different object?

Can you create a workflow rule that updates a field in a different object?
Best Answer chosen by Jeff Rozner 39
HARSHIL U PARIKHHARSHIL U PARIKH
Yes you can!
But however, it depends when you say "different object"

- If the different object is in Master Detail Relationship then you can have a workflow on child obejct which can update the field on Master
- If the different object is in LookUp Relationship then you can have a PROCESS BUILDER (No Workflow here) on child object to update field on Parent
- If the object is not related at all then you need to write a trigger to update the record from whichever object to whichever object you would like.

Hope this helps!