I'm trying to update my "At Risk" column (Flag icon ON/OFF). I want to create a nested formula. I want the flag ON if all three conditions are met:
- The "Due Date" is within one day. Example: if today is 2018-05-04 and the "Due Date" is 2018-05-03, then this condition is met.
- I have a "Status" column. If one of these values is met, then this condition is met:
- Terminated
- Complete
- On Hold
- The "Due Date" column needs to have a date value. If the "Due Date" is blank, then I do NOT want this condition to be met.
- This is where I'm STUCK.
- For example, some parts of the project are not well defined or will happen far, far into the future. We don't even know when the due date is, so we'd rather keep the cell blank. I do NOT want the "At Risk" flag to turn on because of a task with no due date.
Here is the start of my formula. Can someone please help me add condition #3 to my existing formula?
=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
=IF(AND([Due Date]1 <= TODAY() + 1, Status1 <> "Complete", Status1 <> "Terminated", Status1 <> "On Hold"), 1, 0)
=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+