Forum Discussion

NoraJJ's avatar
NoraJJ
Copper Contributor
Mar 01, 2021
Solved

Subtract days in the past, from today, to show a past due message.

The expiry warning is todays date against the date in column E.   I need a message to populate in column F with one of the three options. "Past due" "Due in less than 10 days" "More than 1...
  • HansVogelaar's avatar
    Mar 01, 2021

    NoraJJ 

    In F2:

     

    =IF(E2="","",IF(E2<TODAY(),"Past due",IF(E2<TODAY()+10,"Due in less than 10 days","Due in 10 days or more")))

     

    Fill down.