Skip to main content
I have a Custom Number Field on leads, and I would like to right a workflow that would send an email notofication to the lead owner if this number field is populated. Reason being that it is populated than the customer signed up for a trial.  I have tried this work flor formula but I'm getting an error...

 

AND(

 

ISCHANGED( Org_ID__c ),

 

NOT(ISBLANK(PRIORVALUE( Org_ID__c ),

 

ISBLANK( Org_ID__c  ))))

 

Any help would be appreciated!

 

Thanks!
2 respostas
  1. 8 de jun. de 2015, 20:52
    See if this works for you

     

     

    AND(

    ISCHANGED(Org_ID__c),

    NOT(ISBLANK(PRIORVALUE( Org_ID__c))),

    ISBLANK(Org_ID__c))

     

     
0/9000