Does anyone know how I might modify the results portion of this formula to flip a flag to red?
=IF(AND(Finish@row <= TODAY(3), [% Complete]@row < 1), "1", "0")
Figured it out! See below...
=IF(AND(Finish@row <= TODAY(3), [% Complete]@row < 1), 1, 0)