Forum Discussion
- QuickBaseCoachDQrew CaptainAlas, there is no easy way to colorize the background of a cell as yet, like you can do with Excel Conditional formatting
But you can make a new mirror field and use this method.
https://help.quickbase.com/user-assistance/color_field.html - MarkGlevickyQrew CadetWhat about just changing the color of the font for a given field, either straight out or based on a cell value or date?
- QuickBaseCoachDQrew CaptainAgain, you need to make a new Rich Text mirror field.
for example
var text FontColor =
Case([Priority],
"High","<font color=red>",
"Medium","<font color=blue>",
"Low","<font color=black>");
$FontColor & [Priority]