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
sfdc-Lsfdc-L 

How do i fetch profile name of account owner id by using formula?

Shukla_AnkitShukla_Ankit

Hello,

 

This is the formula

if(  $User.Id =  OwnerId &&  $Profile.Id = $User.ProfileId,  $Profile.Name   ,"")

but its work only for current login user that mean when you create record then it show the profile name but when you change the record owner then its not working for thar you have to write apex trigger.

 

Thanks