Hello Team, can you help me with status column formula to automate status column:
Green = "% complete"=0%
Blue = "% complete"= 100%
Yellow = "Finish Date" >Today() but < Today () + 3d
Red = "Finish Date" + 3d
Remaining "Green"
I was trying but unparseable:
=IF([% Complete]@row="100%", "Blue", IF[% Complete]@row="0%", "Green", IF(AND([Finish Date]@row>Today(), [Finish Date]@row<Today()+3d, "Yellow", IF([Finish Date]@row>TODAY()+3d, "Red", "Green"))))
Please let me know if you need any additional Details, Thanks.