
I am trying to set up a task that fires when a lookup field on Account record has changed.
I am using the ISCHANGED function but am getting the following error message:
Function ISCHANGED may not be used in this type of formula
Can anyone help me write a quick WF formula that will allow me to trigger a task if either L/U field is changed?
Many Thanks
Kevin
답변 5개
Hey Kevin,
You need to make sure that you change the workflow Evaluation criteria to 'created and everytime its edited' otherwise the ISCHANGED function doesnt work
Should be:
OR(ISCHANGED(Field_1__c),
ISCHANGED(Field_2__c))
Best of luck!