Ischanged is not available for picklist type of fields.
So you can use a combination of ISPICKVAL and PRIORVALUE refer to following function:-
When using the ISPICKVAL function to return the previous value of a picklist field, include the PRIORVALUE function inside the ISPICKVAL function as in this example:
Hi Rajesh, The ISCHANGED() function is working fine in formula field of Workflow Rules for Picklist field. when we will choose Evaluation Criteria as "created, and every time it's edited" .
We will get Error if we choose Evaluation Criteria as a "created, and any time it's edited to subsequently meet criteria".
otherwise it will work fine and updating date field with NOW().
Regards, Brahmaiah. make it as a best answer if it helps.
Ischanged is not available for picklist type of fields.
So you can use a combination of ISPICKVAL and PRIORVALUE refer to following function:-
When using the ISPICKVAL function to return the previous value of a picklist field, include the PRIORVALUE function inside the ISPICKVAL function as in this example:
Did this answer your question? If not, let me know what didn't work, or if so, please mark it solved.
ISPICKVAL( PRIORVALUE( Priority__r.SLA_Level__c ) , "Order")
Here Priority is a lookup field to SLA and SLA_Level is a picklist field.
Then the system says,
Error: Function PRIORVALUE may not be used in this type of formula
Thanks
Hi Rajesh,
Create a formula field with formula "Priority__r.SLA_Level__c". Now use the ISCHANGED() for this formula field.
Cheers..
The ISCHANGED() function is working fine in formula field of Workflow Rules for Picklist field. when we will choose Evaluation Criteria as "created, and every time it's edited" .
We will get Error if we choose Evaluation Criteria as a "created, and any time it's edited to subsequently meet criteria".
otherwise it will work fine and updating date field with NOW().
Regards,
Brahmaiah.
make it as a best answer if it helps.