function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Michelle ArndtMichelle Arndt 

Syntax Error for ISCHANGED

I have this rule set up to notify if a lead has been changed to someone else, but i don't want it to notify if it is a certain lead status

ISCHANGED( OwnerId ) && (Status  <> "CP Lead")

Syntax error: Error: Function ISCHANGED may not be used in this type of formula
 
veda Hebbarveda Hebbar
Hi Michelle,

Please use 'PRIORVALUE'
PRIORVALUE(OwnerId) <> OwnerId
Thanks,
Vedashri
 
Amit Chaudhary 8Amit Chaudhary 8
Just change the workflow Evaluation Criteria to "created, and every time it's edited"
User-added image

Let us know if that will help you

Thanks
Amit Chaudhary
Michelle ArndtMichelle Arndt
I ended up using:

AND(ISCHANGED( OwnerId) , NOT(ISPICKVAL( Status , "CP Lead")))
veda Hebbarveda Hebbar
Hi Michelle,

Great.

Yes, for picklist you have to chake value using "ISPICKVAL" in formula field.

Please select the best answer to make this quetion solved. It will help others to find answer.

Thanks,
​Vedashri