At risk flag formula help (please!)

Hi there,
I am attempting to enter a formula in a flag column to automatically show at risk (red) when tasks are overdue and not 100% complete AND when due date is within 7 days and the %complete column is not 100%.
Attached is a screenshot of what I have taken a stab at, I am not amazing at multiple condition formulas so this is likely a bit of a mess. Formula used =IF(AND(Finish@row >= TODAY(-7), [% Complete]@row < 1), IF(AND(Finish@row < TODAY(), [% Complete]@row < 1), 1, 0))
I am in Australia if that helps with any formatting, please can someone show me how to construct this formula so it functions?
Thanks,
Elise
Best Answer
-
Try this...
=IF(AND([% Complete]@row < 1, Finish@row <= TODAY(7)), 1)
Answers
-
Try this...
=IF(AND([% Complete]@row < 1, Finish@row <= TODAY(7)), 1)
-
Thanks Paul, that is great. Appreciate it!
Elise
-