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
Phillip MoseleyPhillip Moseley 

How to create an account owner ID change formula email alert with a picklist value

I'm trying to create a formula that will send an email alert if the Account Owner changes of a customer account which is defined by a picklist field called Type.

If Account Owner ID changes and Type picklist field value = Customer (Formula would be based off this scenario)

Thanks in advance for any help provided!
 
SonamSonam (Salesforce Developers) 
Create the workflow on the Account Object:
The workflow criteria must be set to the formula type.The criteria for the workflow is:
================================
ISCHANGED( OwnerId ) && ISPICKVAL (Type, "Customer")

Set the email alert for the above condition

reference:
https://help.salesforce.com/apex/HTViewSolution?id=000004819&language=en_US
Phillip MoseleyPhillip Moseley
Sonam, Thanks so much! This worked great! Phillip