Forum Discussion
Harish_Patil
Mar 31, 2025Copper Contributor
How to open Hyperlink column in list in same tab
Hi All, I am using SharePoint online custom list. In the list I have Hyperlink column. If I click on the column then it always open the link in new TAB. I want to open into same TAB. Can anyone ...
DaveMehr365
Apr 01, 2025MVP
Hi Harish_Patil
you can use a column formatting for your hyperlink column and open the link in a new tab:
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",
"elmType": "a",
"txtContent": "@currentField",
"attributes": {
"href": "@currentField",
"target": "_self"
}
}
Regards, Dave