Status column with drop down: Not Started, In Progress, Waiting on Data from elsewhere, Complete
Due Date = Date
Actual Date Completed = Date
Not Completed & Past Due - check box
I want to be able to pull the children rows (along with the Parent) to a report or Dashboard for quick review that are past the due date and that are not equal to complete.
So I am trying to come up with a formula for the Not Completed & Past Due - check box
=if(AND([Due Date]@row>Today(1);[Status]@row,"/","Complete");1;0) does not work
=if(AND(Today(1)>[Due Date]3>);(Not [Status]3="Complete",1)) does not work
=IF(AND(TODAY(1) > [Due Date]3, NOT(Status3 = "Completed")), 1) places check box for all drop down items
I am new to formulas and know that my today is totally wrong for past due...but just trying to get the box to check