5 risposte
If they are in Master-Detail, then do like this:
Step1: Create a Rollup summary field on parent record to count the total number of child records
Step 2: Create a Rollup summary field on parent record to count the numner of child records which are marked as deployed(using a field filter in the field)Step 3: Create a Formula(Checkbox) field on parent record with below formula:
Rollup_Field_1__c = Rollup_Field_2__c
Basically ,what we are trying to achieve is if the total number of child records equals the number of child records marked as deployed then the formula checkbox field will be checked.
As this a formula field it is automated and we do not need a process or workflow rules.