Feb 02, 2021 12:40 AM
Dear community,
Does someone know how color a field by level of progress? For example, all tasks under 30% of completion in red, tasks between 30-60% in yellow, tasks between 60-90% in blue and tasks between 90%-100% in green?
I’m sure that is something very easy to do, but I’m new with the PRO subscription and I still learning
Thanks all!
Solved! Go to Solution.
Feb 03, 2021 11:57 PM
What do you mean you can only color by two fields? Record coloring options, as far as I’m aware, support as many fields as there are present in the table. Can you post a screenshot of your coloring settings?
Feb 02, 2021 09:33 AM
Under the record coloring options, chose “Color by condition”. Set up one color per “tier”. Your first tier would be “Where {Percent field} is greater than or equal to 90%” and set the color to green. Your next tier would be “greater than or equal to 60%”. Etc.
Feb 02, 2021 12:47 PM
You can also use a formula field with emoji to indicate color
IF(
{completion percent} < 0.3,
"🔴",
IF(
{completion percent} < 0.6,
"🟡",
"🟢"
)
)
Sometimes I use a slightly more complex version:
IF(
{completion percent} & "",
IF(
{completion percent} < 0.3,
"🔴",
IF(
{completion percent} < 0.6,
"🟡",
"🟢"
)
) & " " & ROUND({completion percent} * 100, 0) & "%"
)
Feb 03, 2021 11:03 PM
Dear @Kamille_Parks , in color by condition I only can choose 2 fields :weary: Dear @kuovonne I tried with your suggestion but it didn’t work :upside_down_face:
Feb 03, 2021 11:57 PM
What do you mean you can only color by two fields? Record coloring options, as far as I’m aware, support as many fields as there are present in the table. Can you post a screenshot of your coloring settings?
Feb 04, 2021 03:53 AM
I’ve done it. However I thought that I could see the color in the % not close to the principal field…
Apr 15, 2024 05:33 AM
Hi!
I did a slight change to match my board:
IF( {Percent} & "", IF( {Percent} < 0.25, "🔴",
IF( {Percent} < 0.5, "🟡", "🟢" ) ) &
" " & ROUND({Percent} * 100, 0) & "%" )
And now I need to make this result be used as the color of the task (register).
But the field I created with this formula do not appears in the "Color" menu options.
How can I use it as a coloring option?
THX!