Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save felipeabajo/1d3af61a3478047865a8a66a5c89f3a7 to your computer and use it in GitHub Desktop.

Select an option

Save felipeabajo/1d3af61a3478047865a8a66a5c89f3a7 to your computer and use it in GitHub Desktop.
Change color of text for lookup columns in SharePoint lists
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",
"elmType": "a",
"txtContent": "@currentField.lookupValue",
"attributes": {
"target": "_blank",
"href": {
"operator": "+",
"operands": [
"/sites/REPLACE WITH SITE/Lists/REPLACE WITH LIST/DispForm.aspx?ID=",
"@currentField.lookupId"
]
}
},
"style": {
"color": "REPLACE WITH COLOR (NAME/HEXADECIMAL CODE)"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment