Skip to main content
Kevin S 님이 #Data Management에 질문했습니다

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개
  1. 2014년 4월 10일 오후 2:52
    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!
0/9000