SharePoint Online/O365 List field views column formatting for hyperlink

 {

"$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",
"elmType": "a",
"txtContent": "View",
"attributes": {
"href": "@currentField",
"target": "_blank"
}
}

dynamically bind the item ID to the URL:

{
"$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",
"elmType": "a",
"txtContent": "View",
"attributes": {
"target": "_blank",
"href": "='https://apps.powerapps.com/play/3fdd0765-2de4-44aa-a81c-7c424ff54ca5?Mode=Edit&ID=' + [$ID]"
}
}

Comments