Is there a way to have a flag automatically turn red if a Priority column is "A"?
Best Answer
-
This should do the trick for you.
=IF([Name of Priority Column]@row = "A", 1, 0)
Just replace "Name of Priority Column" with the actual name of your column. Remove the brackets if your name has no spaces or there isn't a number at the end of the column name.
Do be aware that if someone manually adds or removes a flag the formula will break for that row.
Answers
-
This should do the trick for you.
=IF([Name of Priority Column]@row = "A", 1, 0)
Just replace "Name of Priority Column" with the actual name of your column. Remove the brackets if your name has no spaces or there isn't a number at the end of the column name.
Do be aware that if someone manually adds or removes a flag the formula will break for that row.
-
That did it. Thank you. I was missing the name of the column.😀
Help Article Resources
Categories
Check out the Formula Handbook template!