
On the records, there are two Fields: c(TEXT) and d (lookup to A)
I need a Workflow Rule which updates Field C(TEXT) on Object B if Fields: C on child and D on parrent are NOT EMPTY. I tried something like that:
NOT(ISBLANK(field_C)) && NOT(ISBLANK(A__Parent_Item__r.Field_D))
but the WF is not triggerd. Why ?
2 answers
Depending on the data types of your fields on the parent object, the formula for the rule criteria would look something like this:
AND(
NOT(ISBLANK(Parent_Object__r.Field_C__c)),
NOT(ISBLANK(Parent_Object__r.Field_D__c))
)
* Use the Insert Field button in the formula editor to select your field API Names