Forum Discussion
QuickBaseCoachD
7 years agoQrew Captain
There are several ways to do this but I suggest making a field like this, as a formula text field type called
IF(
Contains([My field],"Truck 1"), "Red",
Contains([My field],"Truck 2"), "Yellow")
Now you have a text field. The just use the native options to select a color for each of those choices. Any text or checkbox field can be used to set a color.
IF(
Contains([My field],"Truck 1"), "Red",
Contains([My field],"Truck 2"), "Yellow")
Now you have a text field. The just use the native options to select a color for each of those choices. Any text or checkbox field can be used to set a color.