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
Terry_0101Terry_0101 

How to identify a Lead Owner?

How to fix this?

When lead owner is changed to this certain person, then do not fire the workflow.

AND( 
LEFT(PRIORVALUE(OwnerId), 3) = '00G', 
LEFT(OwnerId, 3) = '005',
NOT(
$User.Id = "00560000004Yjj5"
))
Shukla YogeshShukla Yogesh

Hi Samantha,

Don't go for the formula. You can simply use below crietria to implement this:

Rule Criteria	
Lead: Lead Owner Not Equal to YourOwnerName

And define your action what you want t do when owner is any other user. Please let me know in case of any issue.

Please mark the answer as best if it resolves your issue!!

 

BR,
Yogesh

Terry_0101Terry_0101
Hi-
I need to use the PRIORVALUE though.  So the WF has to be formulas.