For some reason (Probably user error) I do not receive responses back when I reply to an already created item - so please let me know what I can do better next time. I have this formula very close thanks to all the wonderful advise you have provided still a nogo. Standard Project plan looking for Health -
IF([% Complete]@row = 1, "Green", IF(TODAY() > Finish@row, "Red", IF(TODAY(10) >= Finish@row, IF([% Complete]@row < 0.75, "Yellow", "Blue")))) -- almost gets me there
Then I thought I had it figured out and started getting #invalid data type for future dates when I tried to add in the last bullet below; What I want at the end of the day:
Green: If "% Complete" is 100% (and this one works [% Complete]@row = 1, "Green")
Red: if "% Complete" is <100% when "finish" is (This one works: IF(TODAY() > Finish@row, "Red")
Yellow : If "Finish" is within 10 days and we are <10 days out from the "Finish" date (This one works IF(TODAY(10)>="Finsh@row""% Complete" is <.75 )
What doesn't work is
I still want "Green" to display if the "Start Date" is in the future.
Also I want "Green" if I am still within the Start Date/Finish Date period - (UNLESS: the finish meets the rule above that actually does work)
I think that covers me or at least fixes most of it
Thanks 🤪