Can someone correct my formula or alternative formula that will solve my problem. This will also help me to learn how to do a multiple conditions by Dates in the future.
Here are my conditions. "J4" is the column where they input the date:
IF J4 = blank (no entry), return blank
IF J4 = Date today, return "Enter in VIPER"
IF J4 - Date today <=6, return "Due Soon"
IF J4 - Date today >=7, return "Due Now"
IF J4 - Date today >=30, return "Completed"
this is the formula I attempted to make but it didn't work:
IF(J4="","",IF((TODAY()=J4),"Enter in VIPER",IF(AND(J4-TODAY()<=6),"Due Soon",
(IF(((J4-TODAY())>=7),"Due Now",(IF(((J4-TODAY())>=7),"Completed"))))).
Here are my conditions. "J4" is the column where they input the date:
IF J4 = blank (no entry), return blank
IF J4 = Date today, return "Enter in VIPER"
IF J4 - Date today <=6, return "Due Soon"
IF J4 - Date today >=7, return "Due Now"
IF J4 - Date today >=30, return "Completed"
this is the formula I attempted to make but it didn't work:
IF(J4="","",IF((TODAY()=J4),"Enter in VIPER",IF(AND(J4-TODAY()<=6),"Due Soon",
(IF(((J4-TODAY())>=7),"Due Now",(IF(((J4-TODAY())>=7),"Completed"))))).