You need to sign in to do that
Don't have an account?

Workflow rule to alert on changed Account name, including picklists to filter which records meet the criteria
Hi there,
Another workflow rule question! I'm looking to set up an e-mail alert when the following criteria are met:
Thanks,
Dan
Another workflow rule question! I'm looking to set up an e-mail alert when the following criteria are met:
- When an Account name is changed (not created, only when changed)
- Account Type = "Customer" or "In delivery"
AND( OR( NOT(ISBLANK(PRIORVALUE( Name ))),ISCHANGED( Name )), NOT(ISNEW()), ISPICKVAL (Type = 'In delivery'), ISPICKVAL (Type = 'Customer') )
Thanks,
Dan
If new Account comes in, then ISCHANGE is not evaluated - This is what we want.
If new Account comes in with the name and updated without any chnage in name then ISCHANGE is not evaluated - This is what we want
Above formula will only evaulates true when
1) You make a change in an Account Name and at the same time "Type" is either In delivery OR Customer.
Hope it helps!
All Answers
Hope this helps and if it solves the query then please mark it as best answer!
If new Account comes in, then ISCHANGE is not evaluated - This is what we want.
If new Account comes in with the name and updated without any chnage in name then ISCHANGE is not evaluated - This is what we want
Above formula will only evaulates true when
1) You make a change in an Account Name and at the same time "Type" is either In delivery OR Customer.
Hope it helps!