Red Green Blue dot question
I want to write a formula to return a Green dot if date is less or equal to another date, and a Red dot if the date is greater to the other date, and return a Blue dot if the cell is blank.
Best Answer
-
You had an extra parenthesis after Blue. Try this:
=IF(ISBLANK([start date]@row), "Blue", IF([start date]@row <= $[start date]$1, "Green", "Red"))
Answers
-
Can we give these date columns names to help build the formula?
The answer would be to create an embedded IF statement in the column that displays the dropdown colors.
-
Here is the formula i am trying.
=IF(ISBLANK([start date]@row), "Blue"), IF([start date]@row <= $[start date]$1, "Green", "Red"))
-
You had an extra parenthesis after Blue. Try this:
=IF(ISBLANK([start date]@row), "Blue", IF([start date]@row <= $[start date]$1, "Green", "Red"))
-
Thank you very much. That worked.
Help Article Resources
Categories
Check out the Formula Handbook template!