HYPERLINK
( Job_Application__r.Candidate__r.Id ,
Job_Application__r.Candidate__r.First_Name__c
&"
"
&
Job_Application__r.Candidate__r.Last_Name__c )
******************
- Click the Insert Field button, and select Review >, Job Application >,Candidate >, Record ID, and click Insert.
- Salesforce generates a unique ID for every record.
- By inserting the record ID of the candidate in our HYPERLINK function, we're enabling our formula field to locate and link to the candidate's record.
- We are displaying first name and last name by using concatenation operator.
- Job_Application__r.Candidate__r.Id is the url and remaining is the data.
( Job_Application__r.Candidate__r.Id ,
Job_Application__r.Candidate__r.First_Name__c
&"
"
&
Job_Application__r.Candidate__r.Last_Name__c )
******************
- Click the Insert Field button, and select Review >, Job Application >,Candidate >, Record ID, and click Insert.
- Salesforce generates a unique ID for every record.
- By inserting the record ID of the candidate in our HYPERLINK function, we're enabling our formula field to locate and link to the candidate's record.
- We are displaying first name and last name by using concatenation operator.
- Job_Application__r.Candidate__r.Id is the url and remaining is the data.
HYPERLINK( Department__r.Id ,Department__r.Name__c & " " & Department__r.Name )
*******
- To display Department name and ID at a time and create a link to the particular record
No comments:
Post a Comment