[SalesForce] Workflow rules on rollup summary fields

I have an object that has a custom field and a roll up summary field. When the value of the roll up summary field changes, or the value of the custom field changes, I want to update a field.

Am I right to thing that workflow rules won't work here, because they are not triggered by a change in the rollup summary field?

Thanks

Best Answer

See Triggers and Order of Execution for details, but in summation, workflow rules, assignment rules, etc are skipped in recursive updates. This means that workflow rules on parent and grandparent records won't trigger, but before and after triggers on parents and grandparents will, which means you should place your logic within code if you want it to always be evaluated.

Related Topic