Hi,
I have a formula that works for each cell in a column when I copy and paste it. However, when I try to "convert column to a formula" I get an error message saying my syntax is incorrect.
=IF([Start Date]2 > TODAY(), "Blue", IF(AND([% Complete]2 < 1, [End Date]36 < TODAY()), "Red", IF(COUNTIFS(CHILDREN(), "Red") > 0, "Yellow", "Green")))
if I copy it to row 3 it works
=IF([Start Date]3 > TODAY(), "Blue", IF(AND([% Complete]3 < 1, [End Date]36 < TODAY()), "Red", IF(COUNTIFS(CHILDREN(), "Red") > 0, "Yellow", "Green")))
But I want the logic to apply to the entire column so I don't have to copy and paste the formula each time.
Any help is appreciated!