In the User object I have 10 individuals who are in a profile name Due Diligence
In Opportunities, when a User in the Opportunity Owner field is part of profile Due Diligence only, I would like the first and last name of the User to be placed in a custom text field I created name Drafted_By__c . Is text field the correct data type to use in this field?
Regards,
Forrest
8 answers
Since the Opportunity gets an Owner as and when they are created, you can set it on the "creation" right away. But anyways:
Eval. Criteria: created and every time it's edited
Rule Criteria: formula evaluates to true
Formula:
AND(
Owner.Profile.Name = "Due Diligence",
ISBLANK(Drafted_By__c)
)
Your
Field Update Formulawill be:
Owner.FirstName + " " + Owner.LastName