I am trying to modify this Workflow Rule criteria (view below) so that it will also initiate when someone edits a record within the object Litigation_Role__c.
AND(
OR(
ISNEW(),
Currently this workflow initiates when a new record is created only.
After Workflow criteria is met, a Field update below automatically populates into the field ID_Litagation_Role_Contact_Account when Workflow criteria (above) is met.
CASESAFEID(Litigation__c) & '#' & CASESAFEID(Contact__c) & '#' & CASESAFEID(Account__c) & '#' & TEXT(Role__c)
The ID_Litagation_Role_Contact_Account field is a text(100) field that does not allow duplicates.
This is a workflow and field updated than Deepak had assisted me in.
Thank you,
Forrest
1 answer
What if you omitted the ISNEW and just wrote this: AND(
NOT(ISBLANK(Loan__c)),
NOT(ISBLANK(Contact__c)),
NOT(ISBLANK(Role__c))
)