Forum Discussion
Silas Ezekiels
Apr 04, 2018Copper Contributor
Column conditional format with Json to display attention colour if column is blank
Hi Devs,
I need your help. I cannot for the life of me figure out how to tweak this Json schema provided by Microsoft in order to format a column to simple display an attention or warning colou...
Emil Brandt
Dec 20, 2018Copper Contributor
If i wanted to do the opposite, display a color only if there is a value in the column.
How would that look?
bu11frogg
Dec 20, 2018Brass Contributor
I haven't tried that, but I'm guessing you can take these lines:
},
"#FF0000",
""
]
and switch them around like so:
},
"",
"#FF0000"
]
- Emil BrandtDec 20, 2018Copper Contributor
That works perfectly !
Thank you