Forum Discussion
Prishujain2021
Sep 12, 2023Copper Contributor
Can we make single line of text field value as hyperlink in SharePoint list.
Hi, Can we make single line of text field value as hyperlink in SharePoint list. Thanks
Kedar_Bhandare
Sep 12, 2023Copper Contributor
You can create hyperlink using Column Formatting json like below { "$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json", "elmType": "a", "txtContent": "[$Title]", "attributes": { "target": "_blank", "href": "='https://www.abc.com/' + @currentField + '/' + [$Title]" } }