Forum Discussion
Harry_Kane
Sep 14, 2022Copper Contributor
SharePoint Online JSON Hyperlink Column Formatting - If empty
I am trying to make a hyperlink column to appear "NA" if empty but if a hyperlink is inputted to show as a clickable "View MSA". I am able to achieve the latter as a clickable link but can't seem to...
- Sep 14, 2022
{ "$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json", "elmType": "a", "attributes": { "href": "@currentField", "target": "_blank" }, "txtContent": "=if(@currentField == '', 'NA','View MSA')" }Rob
Los Gallardos
Intranet, SharePoint and Power Platform Manager (and classic 1967 Morris Traveller driver)
RobElliott
Sep 14, 2022Silver Contributor
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",
"elmType": "a",
"attributes": {
"href": "@currentField",
"target": "_blank"
},
"txtContent": "=if(@currentField == '', 'NA','View MSA')"
}
Rob
Los Gallardos
Intranet, SharePoint and Power Platform Manager (and classic 1967 Morris Traveller driver)
Harry_Kane
Sep 14, 2022Copper Contributor
Thank you. I see where I went wrong.