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
RoxyGirlRoxyGirl 

Need help with cross object workflow/field update

Hello, I need to be able to update a field (checkbox) on the Lead object based on the value in an Event associated with that lead.

So

Need to check the box called "Appt held" if there is an event with the subject line "First Appointment" associated with that lead.

 

Any ideas?

 

Thanks for any help you can give.

Rahul SharmaRahul Sharma
I don't think this could be done via a workflow.
Lead can have multiple Events, so you can not write a workflow on event (to check for specific Event subject) and update Lead record.
And I could not think of any out of box functionality to achieve this as a roll up summary is not possible.
You might need to write a Apex Trigger for achieving your functionality.