I am currently using 2 columns to identify tasks "Due in Next 2 Days" and "Past Due/No Schedule". I have been trying to nest the two formulas together to get the status in the same column. How can the following formulas be combined togateher:
=IF(AND(Due6 <= TODAY() + 2, NOT(Due6 < TODAY()), NOT(Status6 = "Completed")), "Due in 2 Days", "")
and
=IF(AND(TODAY() > Due6, NOT(Status6 = "Completed")), "Past Due/No Schedule", "")