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
Miranda L 2Miranda L 2 

Need formula to display Opportunity Owner

Hello there,
I have a custom object called Revenue has lookup relation with  => Contract, it  has lookup relationship with => Opportunity, so  I want to find Opportunity owner please let me know, can we achieve with formula
Thanks
Maharajan CMaharajan C
Hi Miranda,

Please use the below formula:

Contract__r.Opportunity.Owner.FirstName  & ' ' &   Contract__r.Opportunity.Owner.LastName

Thanks,
Maharajan.C