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
NLTNLT 

how to create formula field with hyperlink 'https://google.com_id=114XXXXX' where 'id' reference the value in Engineering__c field. So clicking on formula field value should be dynamic to takes the value from Engineering__c field and route to target link

LBKLBK
'https://google.com?id={!Engineering__c.Id}'

You can use it in VF pages using APEX Link field type.
Amit Singh 1Amit Singh 1
Ok, Use below formula,
HYPERLINK( https://google.com?id=Engineering__c, Engineering__c)

If you want to use Salesforce Base URL then use below formula,
 
LEFT($Api.Partner_Server_URL_260, FIND( '/services', $Api.Partner_Server_URL_260))+ Id

Let me know if this helps :)

Thanks,
Amit