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
Lalit kumar 26Lalit kumar 26 

how to show the master record field on child object in lookup relationship ?

Hi, 

There is a lookup relationship between lead object and a custom object (client__c). On client__c object there is field called program_name__c. If lead is child object, is there any way to display or bind the program__c field on lead.
As of now i can only have the lookup relationship field of client__c on lead object.
Please guide, how can i do this.

Advance thanks  :)  
lalit kumar
Rohit K SethiRohit K Sethi
hi Lalit,

You can create the program__c field as formula field on lead object.
And use below expression
 
Client__r.program_name__c

Thanks.