Forum Discussion
smithme
Feb 25, 2021Brass Contributor
Simple row color by lookup field
All I am trying to do is color code the rows by the value of a Status lookup field. The documentation says this will work: {
"$schema": "https://developer.microsoft.com/json-schemas/sp/v2/row-...
RobElliott
Feb 27, 2021Silver Contributor
smithme it's the schema that's causing the problem. This will work:
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/view-formatting.schema.json",
"additionalRowClass": "=if([$Status] == 'Not Assigned', 'sp-field-severity--severeWarning', '')"
}
Rob
Los Gallardos
Microsoft Power Automate Community Super User