AshleyGwozdz
3 years agoQrew Member
color coding - multiple types of fields
Can anyone help with the following color-coding formula? I couldn't find an example in the help guide of different types of fields in one formula.
The first field is multiple choice and I only want to color code one of the three choices, otherwise, no color.
The next three fields are checkboxes and I want to color code if true, otherwise, no color.
I am getting an error only on the closing parentheses that says "expecting text but found bool".
We would prefer to color code the entire record row for easy identification, which is why I am trying to do this from the Default report settings, but if there is another way, I would be glad to know it.
Thanks!
------------------------------
Ashley Gwozdz
------------------------------
The first field is multiple choice and I only want to color code one of the three choices, otherwise, no color.
The next three fields are checkboxes and I want to color code if true, otherwise, no color.
I am getting an error only on the closing parentheses that says "expecting text but found bool".
We would prefer to color code the entire record row for easy identification, which is why I am trying to do this from the Default report settings, but if there is another way, I would be glad to know it.
Thanks!
Case(
[Multiple Choice Field], "Option2", "#f0f0f0",
[Checkbox Field 1], "true", "#dbfffd",
[Checkbox Field 2], "true", "#ffebbf",
[Checkbox Field 3], "true", "#ffffbf",
)
------------------------------
Ashley Gwozdz
------------------------------