[SalesForce] Hyperlink formula field to open in the same page

I have formula field (hyperlink) in contact object to open a record that is related to account object. But the problem is the link opens in new tab and users want them to open in the same page like all other standard salesforce links.

Below is the formula i have used to create the hyperlink.

HYPERLINK("/" 
& Account.Firm__c, 
Firm_ID__c)

Any suggestions welcome to fix the problem.
Thanks in advance !!!

Best Answer

Please see the following Salesforce.com help page on the HYPERLINK formula function:

https://help.salesforce.com/HTViewSolution?id=000007600&language=en_US

You will want to add a target of "_self".

Related Topic