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
Santosh SSantosh S 

Need Help in Auto Populating fields from same Object (Lead)

Dear All, The requirement is to auto populate the Fields like firstname, lastname, city, etc (Fields of Standard object 'Lead'); based in the selection on the self Lookup ('Lead') Basically trying to auto populate various (standard) Fields based the Selection of the existing Lead using Lookup (Lead) The 'SearchLead' is a custom field with Lookup (Lead) and all the other fields are standard Lead Fields Requirement is to auto populate the Standard Field based on the selection of existing Lead using the 'SearchLead' Please Help Warm Regards,
Best Answer chosen by Santosh S
JBabuJBabu

Hi,

 

You can write formula field which points to other field. 

Like example firstname of Lead object if you want in another field like Name__c then text formula field would be

Name__c = firstname

 

Thanks,

Babu.