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
Shanky77Shanky77 

How to make Account Id clickable(Hot link) in SF

Hi
Lets say we Clicked Account tab. Number account records have been displayed. It has field Contract Id .
As of now it is just a non clickable field. I need to make it a hot link, so that as soon as user clicks on it, it should take to the Contract Page.

Any Idea how to do that???
Best Answer chosen by Admin (Salesforce Developers) 
TbomTbom

If Contract Id is a Lookup type field you'll get a link automatically... so must not be so. 

So if you have the actual Contract Id on the Account record and it's not a Lookup, you could try creating a formula text field and using the HYPERLINK() function. 

Ex: HYPERLINK(https://na6.salesforce.com/theContractId, 'Link to Contract')