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
DaFFyDaFFy 

Opportunity Owner Change Workflow Rule

Hi

 

I'm trying to create a workflow rule where if the opportunity owner changes, it would send out an email alert. I created the email template as well as the email alert. 

 

The workflow rule i created was     

 

AND( ISCHANGED( OwnerId ))

 

Unfortunately for some reason the workflow doesn't seem to be kicking off the email alert. Any help would be appreciated.

Best Answer chosen by Admin (Salesforce Developers) 
Steve :-/Steve :-/

Can you post your WFR Criteria?  Also, you formula should just be: 

ISCHANGED( OwnerId )

 

All Answers

Steve :-/Steve :-/

Can you post your WFR Criteria?  Also, you formula should just be: 

ISCHANGED( OwnerId )

 

This was selected as the best answer
DaFFyDaFFy

Thanks! This worked. 

Cody ChambersCody Chambers
Hi Steve, I know this is an old post but I am creating this in my org now. How would I restrict this WFR to just a specific record type?

AND(RecordType.Name  = XVELA Terminals,ISCHANGED(OwnerID))

This is what I have but I might be using the wrong formula.