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
RimaRima 

How to assign lookup value to record name

Hi,

 

I am using "contact" to store some of the contact details of clients. I have another custom object "client details" where I am storing more information about the client like client history, current employment etc. The "client details" has a lookup relationship with "contact".  The "client details" has a standard field "Client Name". How to assign contact name which is a lookup field in the  "client details" to the "client name"  standard field? Your help is greatly appreciated.

Ispita_NavatarIspita_Navatar

Lookup field cannot be assigned to "ContactName" standard field as it a text field and the lookup is a reference field which stores ids, only in the detail it shows the contactName if the lookup is to a contact or Account name if the lookup is to a account, of simply the name field of the objecxt which is related to the lookup field.

In case it is very vital that you want to bring the contact name on to your custom object, you can achieve that by mean of creating formula field - where the formula can be as follows:-

 Contact__c. name      or     you may use  Contact__c. firstname + " " + Contact__c. lastname

 

 

Did this answer your question? If not, let me know what didn't work, or if so, please mark it solved.

SunilSunil

Hi,

 

Create a workflow rule which will update your "client name"  standard field same as "contact name" lookup field info.

 

Pls let me know if you have any questions.

 

Thanks