Tell me more ×
Salesforce Stack Exchange is a question and answer site for Salesforce administrators, implementation experts, developers and anybody in-between. It's 100% free, no registration required.

In a case where we have Account and Opportunity object. From the Opportunity object, can we have a field that gets the Account Owner's Name without using a trigger?

I checked using a formula field and a workflow and the most that I can do in the formula is "Account.OwnerId". It won't allow me to have "Account.Owner.Name"

share|improve this question

1 Answer

up vote 6 down vote accepted

No, unfortunately, you can't access the Account Owner Name from a formula without a trigger. The trigger approach has been blogged here, and the idea to fix this for formulas is here.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.