Oh formulas. . . I feel like I am close, but could use some help.
I would like the 'risk' flag to be marked if the data meets the following criteria:
% complete is equal to or less than 50% AND
The date is within 3 days; Today; or is in the past
=IF(AND(([% Complete]@row >= ".5"), (Finish@row >= TODAY(+3), Finish@row <= TODAY(), Finish@row = TODAY(-1) )), 1, 0)
@Paul Newcome you seem to know what you are doing. Thought I would tag you (been reading/searching a lot). ;-)