You need to sign in to do that
Don't have an account?
petec@i2isys
IsPickval and PriorValue
I'm trying to create a workflow rule that looks at Account Status. If the Account Status was Hold and then becomes any other value, I want it to fire off an email. I used AND(ISPICKVAL(PRIORVALUE( Account_Status__c ),'Hold')) but it fires everytime a record with Status Hold is edited.
What am I doing wrong.
What am I doing wrong.
All Answers
Include Ischanged as well
ex:
AND( ISCHANGED(Book_of_Business__c ),
OR( ISPICKVAL(Book_of_Business__c , "Strategic Pipeline"),
ISPICKVAL(Book_of_Business__c , "")),
OR( ISPICKVAL(PRIORVALUE(Book_of_Business__c ), "Top 10"),
ISPICKVAL(PRIORVALUE(Book_of_Business__c ), "Customer & Top 10")))
let me know, if it helps you or need any help :)
shiva.sfdc.backup@gmail.com
(ISPICKVAL(Account_Status__c,"Green") || ISPICKVAL(Account_Status__c,"Red"))
AND(ISPICKVAL(PRIORVALUE( Account_Status__c ),"Turnkey") &&
(ISPICKVAL(Account_Status__c,"Green") || ISPICKVAL(Account_Status__c,"Red")))